| Package Data | |
|---|---|
| Maintainer Username: | esbenp |
| Maintainer Contact: | ep@traede.com (Esben Petersen) |
| Package Create Date: | 2015-05-06 |
| Package Last Update: | 2016-01-08 |
| Language: | PHP |
| License: | Unknown |
| Last Refreshed: | 2025-11-02 15:04:13 |
| Package Statistics | |
|---|---|
| Total Downloads: | 7,934 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 55 |
| Total Watchers: | 7 |
| Total Forks: | 17 |
| Total Open Issues: | 6 |
A Lumen bridge for lucadegasperi/oauth2-server-laravel.
I have written an extensive blog post on it's use here.
Building a web app with Lumen web API and OAuth2 authentication
Run composer require optimus/oauth2-server-lumen 0.1.*
In your bootstrap/app.php register service providers
$app->register('LucaDegasperi\OAuth2Server\Storage\FluentStorageServiceProvider');
$app->register('Optimus\OAuth2Server\OAuth2ServerServiceProvider');
... and middleware
$app->middleware([
'LucaDegasperi\OAuth2Server\Middleware\OAuthExceptionHandlerMiddleware'
]);
... and route middleware
$app->routeMiddleware([
'check-authorization-params' => 'Optimus\OAuth2Server\Middleware\CheckAuthCodeRequestMiddleware',
'csrf' => 'Laravel\Lumen\Http\Middleware\VerifyCsrfToken',
'oauth' => 'Optimus\OAuth2Server\Middleware\OAuthMiddleware',
'oauth-owner' => 'Optimus\OAuth2Server\Middleware\OAuthOwnerMiddleware'
]);
Copy vendor/lucadegasperi/oauth2-server-laravel/config/oauth2.php to your own config folder (config/oauth2.php in your project root). It has to be the correct config folder as it is registered using $app->configure().
Run php artisan migrate --path=vendor/lucadegasperi/oauth2-server-laravel/migrations
If you get an error saying the Config class can not be found, add class_alias('Illuminate\Support\Facades\Config', 'Config'); to your bootstrap/app.php file and uncomment $app->withFacades(); temporarily to import the migrations.
The package is now installed for Lumen. Usage is the same as with lucadegasperi/oauth2-server-laravel, so I suggest you read the wiki for usage.