theshopdev / api-client
theshop API client for Laravel.
1.0.4
2023-11-14 14:43 UTC
Requires
- php: ^8.1
- ext-json: *
- guzzlehttp/guzzle: ^7.0
- laravel/framework: ^8.0 || ^9.0 || ^10.0
This package is auto-updated.
Last update: 2025-03-05 12:13:08 UTC
README
composer require theshopdev/api-client
- Add
\Theshop\ApiClient\ApiClientServiceProvider::class
toconfig/app.php
providers. - Fill .env values:
THESHOP_API_KEY=
THESHOP_API_ENDPOINT=
THESHOP_CATALOG=
Usage
For single request:
$data = $this->getConnector()->send(new ProductListRequest( limit: 8, offset: 0 ))->data;
For multiple async requests:
$data = $this->getConnector()->sendMultiple([ 'pages' => new ProductListRequest( limit: 8, offset: 0 ), 'categories' => new ProductListRequest( limit: 8, offset: 0 ) ]);