-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·46 lines (46 loc) · 1.29 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": "lenius/basket",
"description": "Shopping basket package",
"homepage": "https://github.com/lenius/basket",
"keywords": ["e-commerce", "shopping"],
"license": "MIT",
"authors": [
{
"name": "Carsten Jonstrup",
"email": "info@lenius.dk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"php-coveralls/php-coveralls": "2.5.2",
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "3.10.3",
"vimeo/psalm": "^5.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Lenius\\Basket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lenius\\Basket\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm --show-info=true",
"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"
}
}