-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.26 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.26 KB
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
{
"name": "prestashop/ps_onepagecheckout",
"description": "PrestaShop module ps_onepagecheckout",
"homepage": "https://github.com/PrestaShop/ps_onepagecheckout",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.3"
},
"config": {
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\PsOnePageCheckout\\": "src/"
},
"classmap": [
"ps_onepagecheckout.php",
"controllers/"
]
},
"scripts": {
"phpstan": "./tests/php/phpstan.sh latest",
"cs-fixer:fix": "./vendor/bin/php-cs-fixer fix . --diff --using-cache=no --sequential --config=vendor/prestashop/php-dev-tools/templates/cs-fixer/.php-cs-fixer.dist.php",
"cs-fixer:dry": "./vendor/bin/php-cs-fixer fix . --dry-run --diff --using-cache=no --sequential --config=vendor/prestashop/php-dev-tools/templates/cs-fixer/.php-cs-fixer.dist.php",
"test:unit": "./scripts/run-tests.sh unit",
"test:integration": "./scripts/run-tests.sh integration"
},
"type": "prestashop-module"
}