Download the PHP package aligent/bigcommerce-api-client without Composer
On this page you can find all versions of the php package aligent/bigcommerce-api-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download aligent/bigcommerce-api-client
More information about aligent/bigcommerce-api-client
Files in aligent/bigcommerce-api-client
Package bigcommerce-api-client
Short Description API client for BigCommerce
License GPL-3.0-only
Informations about the package bigcommerce-api-client
BigCommerce V3 Api Library
Introduction
This is an easy-to-use API client for BigCommerce.
Installation
Install aligent/bigcommerce-api-client
from packagist using composer: composer require aligent/bigcommerce-api-client
.
Usage Examples
Trivial example of updating a product name:
Fetching all visible products (all pages of products):
Example of updating a product variant
Example of creating a product variant
API Design
There are three components to the library:
-
BigCommerce/Api - which represent the API endpoints and tries to mimic the layout of the documentation.
-
BigCommerce/ResourceModels - which represent the resources that are sent to and received from the API, for example a
Product
or anOrder
. - BigCommerce/ResponseModels - which represent the responses from the BigCommerce API.
For additional documentation, see the code documentation.
API Classes
To interact with the API, always start with the BigCommerce\ApiV3\Client class. All APIs can be accessed in two ways: with and without an ID.
If you are querying about a specific resource instance (e.g. Product 5), then you would use singular endpoint (
->catalog()->product(5)
), otherwise you would use the plural endpoint (i.e. ->catalog()->products()
).
For example, suppose we want to find all the metafields for a brand with and id of 123
. Our query is for a specific
brand, but any metafield, so the call would look like:
Suppose we now want to delete metafield 456
on brand 123
. Now our query is for a specific brand and a specific
metafield.
Resource Model Classes
The resource models represent the resources we provided to the API and the responses we receive.
To create a new resource, simply instantiate a new object of the correct resource model and then send it to the create endpoint. For example, if we want to create a new brand:
Response Model Classes
Responses from the API all use similar response classes for consistency. There are two types generally: singular responses,
and plural responses. Singular responses will have a single method in the format get<resource>()
,
for example (ProductResponse::getProduct()
). Plural responses will have two methods, a getPagination()
and get<resources>()
(e.g. ProductsResponse::getProducts()
).
Note that the API request is sent when the action is called and the response is returned.
Development
- Running tests:
composer run-script test
- Checking PHP style rules:
composer run-script check-style
- Auto fix code style rules:
composer run-script fix-style
If you do not have composer installed, you can use the docker version: docker run --rm -it -v $PWD:/app composer run-script check-style
Writing Tests
All tests are located in the tests folder in the namespace BigCommerce\Tests
. The namespace should match the class
being tested after this, e.g. BigCommerce\Tests\Api\Carts
for testing BigCommerce\ApiV3\Api\Carts\CartsApi
.
Responses can be mocked using the BigCommerceApiTest::setReturnData()
function then you can inspect the request that
was made with BigCommerceApiTest::getLastRequest()
. Response JSON files are stored in tests/BigCommerce/responses.
Full Documentation
If you would like to have full class documentation, run
docker run --rm -v /path/to/vendor/aligent/bigcommerce-api:/data phpdoc/phpdoc:3 run -d /data/src -t /data/docs --defaultpackagename BigCommerce --visibility public