https://github.com/arif-rh/ci4-auth
PHPAuth for CodeIgniter 4
https://github.com/arif-rh/ci4-auth
authentication codeigniter4-auth codeigniter4-library
Last synced: about 2 months ago
JSON representation
PHPAuth for CodeIgniter 4
- Host: GitHub
- URL: https://github.com/arif-rh/ci4-auth
- Owner: arif-rh
- License: mit
- Created: 2020-05-17T09:26:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-28T12:10:22.000Z (almost 4 years ago)
- Last Synced: 2025-03-29T04:04:47.216Z (2 months ago)
- Topics: authentication, codeigniter4-auth, codeigniter4-library
- Language: PHP
- Size: 55.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHPAuth for CodeIgniter 4
This package is adopted from [PHPAuth](https://github.com/PHPAuth/PHPAuth), but completedly rewrited for easy implementation with CodeIgniter 4.
## Installation
1. `composer require arif-rh/ci4-auth`
2. make sure you have set you database config properly
3. `php spark migrate -n Arifrh\Auth`
4. `php spark db:seed \\Arifrh\\Auth\\Database\\Seeds\\AuthSeeder`## Features
- Register
- Activation email
- Login
- Request reset password
- Encrypt password using bcrypt
- Prevent brute force attack by limiting request## Acknowledgments
- [PHPAuth](https://github.com/PHPAuth/PHPAuth)