alfa-dev-team / auth-api
Requires
- php: ^8.0
- alfa-dev-team/abstractapi-geo: ^1.0
- alfa-dev-team/rest-api-responses: ^1.0
- doctrine/dbal: ^3.2
- jenssegers/agent: ^2.6
- laravel/nexmo-notification-channel: ^2.5
- laravel/sanctum: ^2.12
- nexmo/laravel: ^2.4
- sonata-project/google-authenticator: ^2.3
Requires (Dev)
- orchestra/testbench: ^6.23
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-03-19 23:02:41 UTC
README
Add dependency using composer
composer require alfa-dev-team/auth-api
You need to add configuration and migrations using the command:
php artisan vendor:publish --tag=configs
php artisan vendor:publish --tag=migrations
In the config
directory, find the auth-api.php
file and add your custom
models.
composer require doctrine/dbal
Run migrations
php artisan migrate
Add routes using
AuthApi::authRoutes();
AuthApi::settingsRoutes();
If you want to redefine some controller, then create a controller that will also
inherit from the controller that you are redefining.
And add to your service provider in register
method
For example:
$this->app->bind(AlfaDevTeam\AuthApi\Controllers\ApiController\RegisterController::class, function ($app){ return new \Modules\Cabinet\Http\Controllers\Auth\RegisterController(); });