shipcloud-laravel maintained by comyo-media
Description
shipcloud laravel wrapper
Authors
Last update
2015/08/17 09:44
(dev-master)
Downloads
94
shipcloud-laravel
An easy-to-use PHP package to communicate with shipcloud's API & Laravel 5+.
Installation
- Install the
comyo-media/shipcloud-laravelpackage
$ composer require comyo-media/shipcloud-laravel
- Update
config/app.phpto activate shipcloud
# Add `ShipcloudLaravelServiceProvider` to the `providers` array
'providers' => array(
...
ComyoMedia\ShipcloudLaravel\ShipcloudLaravelServiceProvider::class,
)
# Add the `ShipcloudFacade` to the `aliases` array
'aliases' => array(
...
'Shipcloud' => ComyoMedia\ShipcloudLaravel\ShipcloudFacade::class,
)
- Create the configuration file
config/shipcloud.php:
$ php artisan vendor:publish
- Configure your
api_keyin your.envfile:
SHIPCLOUD_API_KEY=YOUR-API-KEY-HERE
Reporting Bugs or Feature Requests
Please report any bugs or feature requests on the github issues page for this project here: