-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.22 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
{
"name": "eoko/magento2-client",
"description": "Eoko Magento 2 client for the API",
"license": "OSL-3.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Eoko",
"homepage": "https://www.eoko.com"
}
],
"autoload": {
"psr-4": {
"Eoko\\Magento2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eoko\\Magento2\\Client\\tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message": "^1.0",
"php-http/discovery": "^1.0",
"php-http/message-factory": "^v1.0",
"php-http/multipart-stream-builder": "^1.0",
"php-http/client-implementation": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v2.3",
"phpunit/phpunit": "5.7.*",
"phpspec/phpspec": "3.2.*",
"symfony/yaml": "^3.3",
"php-http/guzzle6-adapter": "^1.1"
},
"config": {
"bin-dir": "bin"
},
"suggest": {
"php-http/guzzle6-adapter": "In order to use Guzzle v6 as the HTTP client"
},
"scripts": {
"cs-ci": "./bin/php-cs-fixer fix --dry-run --using-cache=no --verbose",
"cs-fix": "./bin/php-cs-fixer fix --using-cache=no --verbose",
"test": "./bin/phpunit"
}
}