-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
44 lines (44 loc) · 1.06 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
{
"name": "prestashop/ps_distributionapiclient",
"description": "PrestaShop - Modules from distribution API",
"homepage": "https://github.com/PrestaShop/ps_distributionapiclient",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"prestashop/circuit-breaker": "^4.0",
"doctrine/cache": "^2.1",
"symfony/http-client": "6.4.*"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.2",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\DistributionApiClient\\": "src/"
},
"classmap": ["ps_distributionapiclient.php"]
},
"autoload-dev": {
"psr-4": {
"PrestaShop\\Module\\DistributionApiClient\\Tests\\": "tests/Unit/"
}
},
"config": {
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false,
"platform": {
"php": "8.1.0"
}
},
"type": "prestashop-module"
}