codeigniter4-authentication - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Addins (https://forum.codeigniter.com/forumdisplay.php?fid=34) +--- Thread: codeigniter4-authentication (/showthread.php?tid=78540) |
codeigniter4-authentication - agungsugiarto - 02-05-2021 UPDATE - Documentation is up - Auth scaffolding included, you can publish with command `php spark auth:publish` see more detail at documentation Hello guys, wanna share with you the most powerfull authentication packages for codeigniter4, this package bring you feel authentication same as laravel authentication because this packages was inpired by laravel-auth and codeigniter-shield, with codeigniter4-authentication you can handle multiple "guards" and "providers". Guards define how users are authenticated for each request. Providers define how users are retrived from your persistent storage, codeigniter4-authentication ships with support for retrieving users using Model and the Database query builder. The basic feature this package: - Login - Remember login - Verify email - Reset password - Confirm password - Filter for authentication - and many filter flow Take a look and give a comment or issue in github repo. Thanks Regards, Agung Sugiarto github: https://github.com/agungsugiarto/codeigniter4-authentication packagist: https://packagist.org/packages/agungsugiarto/codeigniter4-authentication Note: gui for this package i will separate with different repo in next day. RE: codeigniter4-authentication - nicojmb - 02-05-2021 Great!!, waiting to docs to test!!! this has JWT support? RE: codeigniter4-authentication - agungsugiarto - 02-05-2021 (02-05-2021, 05:11 AM)nicojmb Wrote: Great!!, waiting to docs to test!!! Not supported by default, but you can implementation by your self with this contract interface, or maybe you can use basic access token see the supported default guard driver RE: codeigniter4-authentication - bulentsakarya - 02-08-2021 Waiting docs. When will it be ready? RE: codeigniter4-authentication - agungsugiarto - 02-09-2021 (02-08-2021, 11:44 AM)bulentsakarya Wrote: Waiting docs. When will it be ready?Asap, but if you want try first take a look repository demo https://github.com/agungsugiarto/codeigniter4-authentication-demo RE: codeigniter4-authentication - agungsugiarto - 03-03-2021 (02-05-2021, 05:11 AM)nicojmb Wrote: Great!!, waiting to docs to test!!! Hello Nicojmb, here we go supported jwt authentication, this package is port from tymondesigns/jwt-auth for working with codeigniter4-authentication. Still in development, but so far is working perfectly. Take a look. https://github.com/agungsugiarto/codeigniter4-authentication-jwt |