prakashdivyy / laravel-oauth2-ui
A Laravel 5 service provider for prakashdivyy/oauth2-ui
Installs: 124
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/prakashdivyy/laravel-oauth2-ui
Requires
- php: ^5.6 || ^7.0
- illuminate/support: ^5.2
- prakashdivyy/oauth2-ui: *
This package is not auto-updated.
Last update: 2025-10-04 00:29:20 UTC
README
Installation
To install, add this on composer.json
:
{
"require": {
"prakashdivyy/laravel-oauth2-ui": "*"
}
}
After requiring the package with Composer, you'll need to add the following to the providers
array in config/app.php
:
PrakashDivy\Laravel\OAuth2\UI\UIServiceProvider::class
Then, add the following to the aliases
array in the same file:
'UI' => PrakashDivy\Laravel\OAuth2\UI\Facades\UI::class
Now, run the following to properly set up the package with your Laravel application:
php artisan vendor:publish