wedesignit / laravel-bol-open-api
Laravel connector for the bol.com Open API client
Installs: 1 029
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- bolcom/bolcom-openapi-php-client: ~2.3
- laravel/framework: >=5.5
This package is auto-updated.
Last update: 2024-11-16 22:14:53 UTC
README
You can publish the config and view files into your project by running:
$ php artisan vendor:publish --provider "WeDesignIt\BolOpenApiServiceProvider"
For Laravel >=5.5, no need to manually add the BolOpenApiServiceProvider
into the app config. It uses package auto discovery feature. Skip this if you are on >=5.5, if not:
Open your AppServiceProvider
(located in app/Providers
) and add this line in register
function
$this->app->register(\WeDesignIt\BolOpenApiServiceProvider::class);
or open your config/app.php
and add this line in providers
section
WeDesignIt\BolOpenApiServiceProvider::class,