-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·44 lines (44 loc) · 921 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
40
41
42
43
44
{
"name": "cbatista8a/prestashop-skeleton-module",
"description": "A base prestashop module for development",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Cuba DevOps",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"CubaDevOps\\Skeleton\\" : "src/"
},
"classmap": [
"controllers",
"classes",
"skeleton.php"
]
},
"autoload-dev": {
"psr-4": {
"CubaDevOps\\Skeleton\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.0"
}
,
"require-dev": {
"prestashop/autoindex": "v2.1.0",
"friendsofphp/php-cs-fixer": "v3.14.4",
"phpunit/phpunit": "v9.6.3"
},
"config": {
"prepend-autoloader": false
},
"type": "prestashop-module",
"scripts": {
"format": "./vendor/bin/php-cs-fixer fix . --rules=@PSR12,@Symfony",
"test": "./vendor/bin/phpunit tests"
}
}