-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 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
{
"name": "prestashopcorp/lightweight-container",
"description": "No-deps lightweight service container",
"type": "library",
"autoload": {
"psr-4": {
"PrestaShopCorp\\LightweightContainer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrestaShopCorp\\LightweightContainer\\Test\\": "tests/src/"
}
},
"authors": [
{
"name": "hschoenenberger",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"phpstan/phpstan": "^1.7",
"prestashop/php-dev-tools": "^4.2"
},
"scripts": {
"phpunit": "./vendor/bin/phpunit --coverage-text",
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix --config .php_cs.dist.php --diff",
"header-stamp": "./vendor/bin/header-stamp --target=\".\" --license=./vendor/prestashop/header-stamp/assets/afl.txt --exclude=.github,vendor,tests"
},
"author": "PrestaShop",
"license": "AFL-3.0"
}