https://github.com/jamband/papers
Authentication examples with Laravel
https://github.com/jamband/papers
authentication examples laravel
Last synced: 3 months ago
JSON representation
Authentication examples with Laravel
- Host: GitHub
- URL: https://github.com/jamband/papers
- Owner: jamband
- License: mit
- Created: 2021-11-23T13:57:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-19T04:32:53.000Z (4 months ago)
- Last Synced: 2026-03-19T21:12:53.032Z (4 months ago)
- Topics: authentication, examples, laravel
- Language: PHP
- Homepage:
- Size: 1.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Papers
Papers is a project created as a documentation for authentication with Laravel.
## Requirements for development environment
- PHP >= 8.4
- Composer >= 2.8.1
- SQLite 3
- Node.js >= 24.x
- npm >= 11.10.0
- [Mailpit](https://github.com/axllent/mailpit)
## Install on local
```
cd path/to/somewhere
git clone https://github.com/jamband/papers.git
cd papers
composer run dev
```
## Start the development server
```
php artisan serve
npm run dev
mailpit
```
## Actions
General user:
- User register
- Email verification notification
- User login
- User logout
- Forgot password
- Reset password
- Confirm password
- Delete account
Admin user:
- Admin user login
- Admin user logout
- Delete user
## Testing
Unit tests and feature tests:
```
php artisan test
```
Browser tests:
```
php artisan serve
mailpit
php artisan dusk:chrome-driver
php artisan dusk
```
## License
Papers is licensed under the MIT license.