moderntribe / bigcommerce-api-php
Collection of Big Commerce API clients in php.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 9 453
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 6
Forks: 3
Open Issues: 9
Requires
- php: >=5.5
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpunit/phpunit: ^5.6
- squizlabs/php_codesniffer: ~2.6
- dev-master
- v1.1.0
- v1.0.2
- v1.0.1
- v1.0.0
- dev-dependabot/npm_and_yarn/json5-2.2.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/minimatch-3.1.2
- dev-dependabot/npm_and_yarn/copy-props-2.0.5
- dev-dependabot/npm_and_yarn/minimist-1.2.6
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/y18n-3.2.2
This package is auto-updated.
Last update: 2024-09-06 19:33:41 UTC
README
BigCommerce Php API
This is a collection of clients, designed to connect to the Big Commerce APIs. There is one client per API.
https://developer.bigcommerce.com/api-reference/
Getting started
The clients are already built and tested, though this project is designed to easily rebuild and update clients as changes are made to the published BC apis. To get started though, that is not required.
- Clone this repo
- Set your store up as described under Authentication
- Use yarn/npm to install dependencies
- Run the test suites
To run the full suite of tests:
composer install
./vendor/bin/phpunit
To run a single test file:
./vendor/bin/phpunit clients/Catalog/SwaggerClient-php/test/Api/ProductsApiTest.php
To run the samples:
php samples/widgets.php
php samples/themes.php
Authentication
- Create your BigCommerce Store and App if you haven't already
- Obtain your store hash, client id and access token
- Rename gulpfile.config.sample.json to gulpfile.config.json and fill in the values
Building the libraries
npm install
gulp buildAll
or
gulp buildOne --name Sites
Including a client in your project
todo: need packagist
composer require moderntribe/bigcommerce-api-php
As per samples.