forked from robwittman/shopify-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 931 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "robwittman/shopify-php-sdk",
"description": "PHP SDK for Shopify API",
"keywords": [
"shopify",
"ecommerce",
"api",
"php"
],
"homepage": "http://github.com/robwittman/shopify-php-sdk",
"license": "MIT",
"authors": [],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "6.2|^7.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"autoload": {
"psr-4": {
"Shopify\\" : "src/",
"Shopify\\Test\\" : "test/"
},
"files" : [
"src/includes.php"
]
},
"require-dev": {
"phpunit/phpunit": "^5.1",
"squizlabs/php_codesniffer": "^3.0",
"overtrue/phplint": "^0.2.4"
},
"scripts" : {
"lint" : "./vendor/bin/phplint ./ --exclude=vendor",
"phpcs" : "./vendor/bin/phpcs ./src"
}
}