sitic / auth
Users with OAuth, Password Reset, Email Change, Roles & Permissions, REST API
dev-main
2021-09-14 14:36 UTC
Requires
- cviebrock/eloquent-sluggable: ^8.0
- doctrine/dbal: ^3.1
- dusterio/lumen-passport: ^0.3.4
- guzzlehttp/guzzle: ^7.3
- illuminate/mail: ^8.60
- laravel/lumen: 8.x-dev
- laravel/lumen-framework: ^8.0
- spatie/laravel-permission: ^5.1
This package is auto-updated.
Last update: 2025-03-14 22:46:27 UTC
README
This package is for User Management. It allows to CRUD users, get OAuth Token, Change Email / Password.
LUMEN Implementation
1. Install the package
composer require sitic/auth
2. Add in bootstrap/app.php
Route Middlewares
/* |-------------------------------------------------------------------------- | Register Middleware |-------------------------------------------------------------------------- | | Next, we will register the middleware with the application. These can | be global middleware that run before and after each request into a | route or middleware that'll be assigned to some specific routes. | */ $app->routeMiddleware([ 'auth' => App\Http\Middleware\Authenticate::class, 'permission' => Spatie\Permission\Middlewares\PermissionMiddleware::class, 'role' => Spatie\Permission\Middlewares\RoleMiddleware::class, ]);
Providers
/* |-------------------------------------------------------------------------- | Register Service Providers |-------------------------------------------------------------------------- | | Here we will register all of the application's service providers which | are used to bind services into the container. Service providers are | totally optional, so you are not required to uncomment this line. | */ $app->register(\Sitic\Auth\AuthServiceProvider::class);
Application Routes
/* |-------------------------------------------------------------------------- | Load The Application Routes |-------------------------------------------------------------------------- | | Next we will include the routes file so that they can all be added to | the application. This will provide all of the URLs the application | can respond to, as well as the controllers that may handle them. | */ \Dusterio\LumenPassport\LumenPassport::routes($app, ['prefix' => 'api/v1/oauth']);
4. Install Auth
php artisan sitic:auth
5. Run migrations
php artisan migrate
7. Install passport and place output in .env file
php artisan passport:install
output to .env file
MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
PASSPORT_LOGIN_ENDPOINT=/api/v1/oauth/token
PASSPORT_CLIENT_ID=<client_id>
PASSPORT_CLIENT_SECRET=<client_secret>