-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
56 lines (56 loc) · 1.34 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
{
"name": "akeneo/api-php-client",
"description": "Akeneo PIM client for the API",
"license": "OSL-3.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Akeneo",
"homepage": "http://www.akeneo.com"
}
],
"autoload": {
"psr-4": {
"Akeneo\\Pim\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akeneo\\Pim\\ApiClient\\tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"psr/http-message": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message-implementation": "^1.0|^2.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.6",
"php-http/multipart-stream-builder": "^1.0",
"symfony/options-resolver": "^5.4|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"phpunit/phpunit": "^8.0",
"phpspec/phpspec": "^7.1",
"symfony/yaml": "^4.2",
"donatj/mock-webserver": "^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"rector/rector": "^0.14.6",
"symplify/easy-coding-standard": "^11.1"
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "8.2"
},
"allow-plugins": {
"php-http/discovery": false
}
},
"suggest": {
"php-http/guzzle7-adapter": "In order to use Guzzle v7 as the HTTP client"
}
}