-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
executable file
·51 lines (51 loc) · 1.28 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "gnikyt/basic-shopify-api",
"description": "A basic Shopify API wrapper with REST and GraphQL support, powered by Guzzle.",
"license": "MIT",
"type": "library",
"keywords": [
"api",
"graphql",
"rest",
"shopify",
"wrapper"
],
"authors": [
{
"name": "Tyler King",
"email": "tyler.n.king@gmail.com"
}
],
"support": {
"issues": "https://github.com/gnikyt/basic-shopify-api/issues",
"source": "https://github.com/gnikyt/basic-shopify-api"
},
"require": {
"php": ">=7.3.0",
"ext-json": "*",
"caseyamcl/guzzle_retry_middleware": "^2.3",
"guzzlehttp/guzzle": "^6.5 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^6.2 || ^9.3"
},
"autoload": {
"psr-4": {
"Gnikyt\\BasicShopifyAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gnikyt\\BasicShopifyAPI\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}