-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
88 lines (88 loc) · 2.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ddd-by-examples/library-php",
"type": "project",
"description": "A comprehensive Domain-Driven Design example with problem space strategic analysis and various tactical patterns wirtten in PHP.",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"require": {
"php": "^8.3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"fale/isbn": "^3.1",
"munusphp/munus": "^0.16",
"symfony/clock": "^7.1",
"symfony/console": "^7.1",
"symfony/dotenv": "^7.1",
"symfony/framework-bundle": "^7.1",
"symfony/runtime": "^7.1",
"symfony/uid": "^7.1",
"symfony/yaml": "^7.1"
},
"require-dev": {
"behat/behat": "^3.14",
"dama/doctrine-test-bundle": "^8.2",
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
"Akondas\\Library\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akondas\\Library\\Tests\\": "tests/"
},
"files": [
"tests/Fixture/Fixtures.php"
]
},
"scripts": {
"check-cs": [
"php-cs-fixer fix --dry-run --diff"
],
"fix-cs": [
"php-cs-fixer fix"
],
"behat": [
"behat"
],
"phpunit": [
"phpunit"
],
"phpstan": [
"phpstan analyse -c phpstan.neon"
],
"ci": [
"composer validate",
"composer audit",
"bin/console lint:container",
"@tests:database:reset",
"@check-cs",
"@phpstan",
"@phpunit",
"@behat"
],
"database:reset": [
"bin/console d:d:d -f -n --if-exists",
"bin/console d:d:c -n",
"bin/console d:m:m -n"
],
"tests:database:reset": [
"APP_ENV=test composer database:reset"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
}
}