-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 992 Bytes
/
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
{
"name": "prestashopcorp/ps_tech_vedor_boilerplate",
"description": "This is a template module for CloudSync",
"type": "prestashop-module",
"authors": [
{
"name": "CloudSync",
"email": "[email protected]",
"homepage": "https://prestashop.com",
"role": "Developer"
}
],
"license": "AFL-3.0",
"require": {
"ext-gd": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-xmlwriter": "*",
"ext-zip": "*",
"php": ">=7.1",
"vlucas/phpdotenv": "^3.6",
"prestashop/module-lib-service-container": "^2.0",
"prestashop/module-lib-mbo-installer": "^0.1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.15",
"friendsofphp/php-cs-fixer": "^3.16.0",
"prestashop/php-dev-tools": "^4.3"
},
"autoload": {
"classmap": [
"ps_tech_vendor_boilerplate.php"
],
"psr-4": {
"PrestaShop\\Module\\Ps_tech_vendor_boilerplate\\": "src/",
"exclude-from-classmap\\": []
}
}
}