steelants / laravel-auth
Laravel Auth
Installs: 1 151
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- laravel/framework: ^11.0|^12.0
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.9
- orchestra/testbench: ^7.0|^8.0|^9.0
- phpunit/phpunit: ^9.3|^10.4
README
Currently WIP
Created by: SteelAnts s.r.o.
Install
- Artisan Command
install:auth
- add routes to web.php
Route::auth();
Development
-
Create subfolder
/packages
at root of your laravel project -
clone repository to sub folder
/packages
(you need to be positioned at root of your laravel project in your terminal)
git clone https://github.com/steelants/laravel-auth.git ./packages/laravel-auth
- edit composer.json file
"autoload": { "psr-4": { "SteelAnts\\LaravelAuth\\": "packages/laravel-auth/src/" } }
- Add provider to
bootstrap/providers.php
return [ ... SteelAnts\LaravelAuth\AuthServiceProvider::class, ... ];
- aplicate packages changes
php artisan install:auth --force