shipcloud-laravel
An easy-to-use PHP package to communicate with shipcloud's API & Laravel 5+., (*1)
Installation
1) Install the comyo-media/shipcloud-laravel package, (*2)
$ composer require comyo-media/shipcloud-laravel
2) Update config/app.php to activate shipcloud, (*3)
# 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,
)
3) Create the configuration file config/shipcloud.php:, (*4)
$ php artisan vendor:publish
4) Configure your api_key in your .env file:, (*5)
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:, (*6)
https://github.com/comyo-media/shipcloud-laravel/issues, (*7)