forked from PrestaShop/blockreassurance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.08 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
{
"name": "prestashop/blockreassurance",
"description": "PrestaShop module blockreassurance",
"homepage": "https://github.com/PrestaShop/blockreassurance",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"prestashop/circuit-breaker": "^3.0.0",
"doctrine/cache": "^1.6",
"symfony/css-selector": "^3.4 || ^4.4 || ^5.0",
"guzzlehttp/cache-subscriber": "^0.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"prestashop/php-coding-standards": "dev-master"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\BlockReassurance\\": "src/"
},
"classmap": [
"blockreassurance.php",
"classes/ReassuranceActivity.php"
],
"exclude-from-classmap": []
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"platform": {
"php": "5.6"
}
},
"scripts": {
"lint": [
"php-cs-fixer fix --no-interaction --dry-run --diff"
]
},
"type": "prestashop-module"
}