forked from gnikyt/Basic-Shopify-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·37 lines (37 loc) · 878 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
{
"name": "osiset/basic-shopify-api",
"type": "library",
"description": "A basic Shopify API wrapper with REST and GraphQL support, powered by Guzzle.",
"keywords": ["api", "shopify", "rest", "graphql"],
"license": "MIT",
"authors": [
{
"name": "Tyler King",
"email": "tyler@osiset.com"
}
],
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": "^6.5|^7.0",
"caseyamcl/guzzle_retry_middleware": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^6.2|^9.3",
"phpdocumentor/phpdocumentor": "^3.0",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"test": "bin/phpunit"
},
"autoload": {
"psr-4": {
"Osiset\\BasicShopifyAPI\\": "src/Osiset/BasicShopifyAPI"
}
},
"autoload-dev": {
"psr-4": {
"Osiset\\BasicShopifyAPI\\Test\\": "test"
}
},
"config": { "bin-dir": "bin" }
}