-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 980 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 980 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
35
36
37
38
{
"name": "prestashop/prestashop-api",
"type": "project",
"description": "Generates PrestaShop Open-Source API endpoints",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-zip": "*",
"prestashop/psssst": "^1.2",
"symfony/config": "^5.3",
"symfony/console": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/finder": "^5.3",
"symfony/yaml": "^5.3",
"knplabs/github-api": "^3.3",
"google/cloud-storage": "^1.26",
"symfony/http-client": "^5.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"platform": {
"php": "8.1"
}
}
}