-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
59 lines (59 loc) · 1.38 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
52
53
54
55
56
57
58
59
{
"name": "zfr/zfr-shopify",
"type": "library",
"license": "MIT",
"description" : "PHP library for interacting with the Shopify REST API",
"keywords": [
"shopify",
"api"
],
"homepage": "https://github.com/zf-fr/zfr-shopify",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"require": {
"php": "^7.0|^8.0|^8.1",
"guzzlehttp/guzzle-services": "^1.0",
"psr/container": "^1.0 || ^2.0",
"psr/http-message": "^1.0 || ^2.0",
"laminas/laminas-diactoros": "^1.3 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^2.5",
"phpspec/prophecy-phpunit": "^2.0"
},
"suggest": {
"laminas/laminas-servicemanager": "^3.0"
},
"autoload": {
"psr-4": {
"ZfrShopify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrShopifyTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
},
"extra": {
"zf": {
"config-provider": [
"ZfrShopify\\ConfigProvider"
]
}
}
}