Installation
Main API
composer require esc/shopify
to install the package.- Add
Esc\Shopify\Providers\APIServiceProvider::class
to theproviders
array inconfig/app.php
. php artisan vendor:publish
to copy the config toconfig/esc_shopify.php
.
You can now create a new API object using $api = app('ShopifyAPI');
.
Authentication helper framework
Follow the instructions under the Authentication Helper section. The helper framework is more of a set of pre-built routes and conventions than a drop-in library.
EASDK
- Add
Esc\Shopify\Providers\EASDKServiceProvider::class
to theproviders
array.
You can now create a new EASDK object using $easdk = app('ShopifyAPI');