| Package Data | |
|---|---|
| Maintainer Username: | mkwsra |
| Maintainer Contact: | hussam3bd@gmail.com (Hussam Abd) |
| Package Create Date: | 2017-08-10 |
| Package Last Update: | 2017-08-11 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-11 03:04:19 |
| Package Statistics | |
|---|---|
| Total Downloads: | 15 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Laravel Passport is an OAuth2 server and API authentication package that is simple and enjoyable to use.
composer require liliom/passport 3.0.x-dev
By default, Passport will use the default connection name, but now you can use custom database connection for Passport by adding your connection name in config/auth.php (guards.api.connection)
....
'guards' => [
...
'api' => [
'driver' => 'passport',
'provider' => 'users',
'connection' => env('PASSPORT_CONNECTION'),
],
],
...
Documentation for Passport can be found on the Laravel website.
Laravel Passport is open-sourced software licensed under the MIT license.