-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
45 lines (45 loc) · 951 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
45
{
"name": "simara-svatopluk/cart",
"description": "Domain-Driven design Cart demonstration",
"authors": [
{
"name": "Svaťa Šimara",
"email": "[email protected]",
"homepage": "http://svatasimara.cz"
}
],
"require": {
"php": "^8.1",
"doctrine/orm": "^2.5",
"litipk/php-bignumbers": "^0.8",
"symfony/dependency-injection": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "~10.0",
"squizlabs/php_codesniffer": "4.0.x-dev",
"phpstan/phpstan": "^0.12",
"psalm/phar": "^4.0"
},
"autoload": {
"psr-4": {
"Simara\\Cart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Simara\\Cart\\": "tests/"
}
},
"scripts": {
"checks": [
"@phpunit",
"@phpcs",
"@phpstan",
"@psalm"
],
"phpunit": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs --standard=PSR12 src tests",
"phpstan": "vendor/bin/phpstan.phar analyse --level=max src tests",
"psalm": "vendor/bin/psalm.phar"
}
}