-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
117 lines (117 loc) · 3.18 KB
/
composer.json
File metadata and controls
117 lines (117 loc) · 3.18 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "akondas/domain-drivers-php",
"description": "",
"license": "proprietary",
"type": "project",
"require": {
"php": "^8.3",
"ext-decimal": "^1.4",
"ext-redis": "*",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.2",
"dragonmantank/cron-expression": "^3.3",
"friendsofphp/proxy-manager-lts": "^1.0",
"munusphp/munus": "^0.15",
"scienta/doctrine-json-functions": "^6.1",
"snc/redis-bundle": "^4.7",
"symfony/clock": "^7.0",
"symfony/console": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/framework-bundle": "7.0.*",
"symfony/messenger": "^7.0",
"symfony/runtime": "7.0.*",
"symfony/scheduler": "^7.0",
"symfony/uid": "^7.0",
"symfony/yaml": "7.0.*"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.1",
"php-cs-fixer/shim": "^3.57",
"phparkitect/phparkitect": "^0.3.32",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.1",
"zenstruck/messenger-test": "^1.9"
},
"autoload": {
"psr-4": {
"DomainDrivers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DomainDrivers\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"scripts": {
"phpunit:unit": [
"phpunit --colors --testsuite unit"
],
"code-style:fix": [
"PHP_CS_FIXER_FUTURE_MODE=1 php-cs-fixer fix --diff --ansi"
],
"code-style:check": [
"PHP_CS_FIXER_FUTURE_MODE=1 php-cs-fixer fix --dry-run --diff --ansi"
],
"rector:check": [
"rector --dry-run --ansi"
],
"rector:fix": [
"rector --ansi"
],
"phpstan": [
"phpstan analyze --ansi"
],
"phparkitect": [
"phparkitect check"
],
"tests": [
"@phpunit:unit"
],
"lint" : [
"bin/console lint:container"
],
"ci": [
"@composer validate",
"@composer audit",
"@code-style:check",
"@lint",
"@phpstan",
"@phparkitect",
"@tests:database:reset",
"@tests",
"@prod:ready"
],
"database:reset": [
"bin/console d:d:d -f -n --if-exists",
"bin/console d:d:c -n",
"bin/console d:m:m -n",
"bin/console d:s:v"
],
"tests:database:reset": [
"APP_ENV=test composer database:reset"
],
"prod:ready": [
"bin/console cache:warmup -e prod"
]
},
"config": {
"audit": {
"abandoned": "fail"
},
"allow-plugins": {
"symfony/runtime": true
},
"sort-packages": true
}
}