-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.29 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
{
"name": "diglin/sylius-api-php-client",
"description": "Sylius client for the API",
"license": "OSL-3.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Akeneo (Original Work)",
"homepage": "https://www.akeneo.com"
},
{
"name": "Diglin (Derivative Work)",
"homepage": "https://www.diglin.com"
}
],
"autoload": {
"psr-4": {
"Diglin\\Sylius\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Diglin\\Sylius\\ApiClient\\tests\\": "tests/"
}
},
"require": {
"php": ">=7.1 <8.3",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.1 || ^2.0",
"php-http/message": "^1.7",
"php-http/discovery": "^1.6",
"php-http/message-factory": "^v1.0",
"php-http/multipart-stream-builder": "^1.0",
"php-http/client-implementation": "^1.0",
"symfony/expression-language": "^3.0|^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^5.7",
"phpspec/phpspec": "^5.0",
"symfony/yaml": "^4.2",
"donatj/mock-webserver": "^2.0",
"php-http/guzzle6-adapter": "^2.0"
},
"config": {
"bin-dir": "bin"
},
"suggest": {
"php-http/guzzle6-adapter": "In order to use Guzzle v6 as the HTTP client"
}
}