https://github.com/cadicvnn/shopify-api
Shopify API resources client in PHP
https://github.com/cadicvnn/shopify-api
api shopify shopify-api
Last synced: 8 months ago
JSON representation
Shopify API resources client in PHP
- Host: GitHub
- URL: https://github.com/cadicvnn/shopify-api
- Owner: cadicvnn
- Created: 2017-10-31T08:19:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-08T06:40:21.000Z (over 1 year ago)
- Last Synced: 2025-09-28T01:55:17.954Z (9 months ago)
- Topics: api, shopify, shopify-api
- Language: PHP
- Size: 74.2 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shopify API
A simple [Shopify API](http://api.shopify.com/) client in PHP.
## Requirements
* PHP 5.4 (or higher)
* ext-curl, ext-json
## Installation
Get the library via `Composer`
```bash
composer require secomapp/shopify-api
```
## Usage
First you will need to initialise the client like this:
```php
$client = new \Secomapp\ClientApi($clientSecret, $shopName, $accessToken);
```
Then you can begin making requests like shown below.
```php
$orderApi = new \Secomapp\Resources\Order($client);
$oders = $orderApi->all();
```