ApiProvider
Api Provider for Laravel 5, (*1)
Installation
Add yvolkan/apiprovider to composer.json., (*2)
"yvolkan/apiprovider": "~1.0"
Run composer update to pull down the latest version of ApiProvider., (*3)
Or run, (*4)
composer require yvolkan/apiprovider
Now open up /config/app.php and add the service provider to your providers array., (*5)
'providers' => [
YVolkan\ApiProvider\ApiProviderServiceProvider::class,
]
Now add the alias., (*6)
'aliases' => [
'ApiProvider' => YVolkan\ApiProvider\Facades\ApiProvider::class,
]