yvolkan/apiprovider

The Api Provider

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

pkg:composer/yvolkan/apiprovider

v1.0.0 2018-03-16 08:10 UTC

This package is not auto-updated.

Last update: 2025-10-12 10:39:13 UTC


README

Api Provider for Laravel 5

Installation

Add yvolkan/apiprovider to composer.json.

"yvolkan/apiprovider": "~1.0"

Run composer update to pull down the latest version of ApiProvider.

Or run

composer require yvolkan/apiprovider

Now open up /config/app.php and add the service provider to your providers array.

'providers' => [
	YVolkan\ApiProvider\ApiProviderServiceProvider::class,
]

Now add the alias.

'aliases' => [
	'ApiProvider' => YVolkan\ApiProvider\Facades\ApiProvider::class,
]