-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·44 lines (44 loc) · 1.2 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
{
"name": "lenius/basket",
"description": "Shopping basket package",
"homepage": "https://github.com/lenius/basket",
"keywords": ["e-commerce", "shopping"],
"license": "MIT",
"authors": [
{
"name": "Carsten Jonstrup",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"php-coveralls/php-coveralls": "^2.7",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.11"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Lenius\\Basket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lenius\\Basket\\Tests\\": "tests"
}
},
"scripts": {
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-html build/logs/phpunit-html/",
"test": "vendor/bin/phpunit",
"stan": "vendor/bin/phpstan analyse"
}
}