![]() |
Announcing Shield: an Official Authentication library - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: News & Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=2) +--- Thread: Announcing Shield: an Official Authentication library (/showthread.php?tid=82003) |
RE: Announcing Shield: an Official Authentication library - luckmoshy - 06-07-2022 @kilishan CI team you make my feeling die on CI Now I think my first breakfast is CI RE: Announcing Shield: an Official Authentication library - frocco - 06-07-2022 (06-07-2022, 01:21 AM)luckmoshy Wrote: @kilishan CI team you make my feeling die on CI Now I think my first breakfast is CI Do you still need to install via composer for the latest CI4? Are there CI docs or on github? Thanks RE: Announcing Shield: an Official Authentication library - kilishan - 06-07-2022 (06-07-2022, 08:16 AM)frocco Wrote: Do you still need to install via composer for the latest CI4? Yes, Shield is required to be intended through Composer. You could probably do a manual install by downloading it and manually adding the CodeIgniter\Shield namespace to app/Config/Autoload, but it hasn't been tested and there's no support for that. RE: Announcing Shield: an Official Authentication library - frocco - 06-07-2022 (06-07-2022, 08:33 AM)kilishan Wrote:(06-07-2022, 08:16 AM)frocco Wrote: Do you still need to install via composer for the latest CI4? On a fresh install of ci4, it fails. composer require codeigniter4/shield Could not find a version of package codeigniter4/shield matching your minim um-stability (stable). Require it with an explicit version constraint allow ing its desired stability. RE: Announcing Shield: an Official Authentication library - jasonzig - 06-07-2022 Thanks @kilishan and CI Team! Looking forward to taking Shield for a spin! RE: Announcing Shield: an Official Authentication library - albertleao - 06-07-2022 No way... after all that debate for years on how auth was never gonna be a part of CI. I think a few people wanted to shoot Narf over this for a while. RE: Announcing Shield: an Official Authentication library - kilishan - 06-07-2022 (06-07-2022, 02:12 PM)albertleao Wrote: No way... after all that debate for years on how auth was never gonna be a part of CI. I think a few people wanted to shoot Narf over this for a while. For a while there, I was definitely the odd man out as both Narf and Jim were saying they didn't want it included. Time has progressed, and we had the opportunity and felt it was needed. Glad we were able to do it now. RE: Announcing Shield: an Official Authentication library - includebeer - 06-07-2022 (06-07-2022, 02:12 PM)albertleao Wrote: No way... after all that debate for years on how auth was never gonna be a part of CI. I think a few people wanted to shoot Narf over this for a while. But it's an "add-in", it's not part of the framework itself. So it makes perfect sense. You can still install CI without the auth part and you can also use a different auth module. RE: Announcing Shield: an Official Authentication library - kenjis - 06-07-2022 @frocco Try: Code: composer require codeigniter4/shield:dev-develop And if v1.0.0 will be officially released, run: Code: composer require codeigniter4/shield:^1.0 RE: Announcing Shield: an Official Authentication library - frocco - 06-07-2022 Thank you |