-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 841 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 841 Bytes
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
{
"name": "clickandmortar/magento-php-api-client",
"description": "Magento 2 PHP REST API client / SDK",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ClickAndMortar\\MagentoApiClient\\": "src/"
}
},
"authors": [
{
"name": "Michael BOUVY",
"email": "michael.bouvy@clickandmortar.fr"
}
],
"require": {
"php": ">=8.2",
"psr/http-client": "^1.0",
"psr/log": "^3.0",
"psr/http-factory": "^1.0",
"symfony/serializer": "^6.0|^7.0",
"php-http/discovery": "^1.19",
"php-http/guzzle7-adapter": "^1.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"symfony/var-dumper": "^7.0"
}
}