-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
170 lines (170 loc) · 5.68 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "nplhse/cois-hub",
"description": "A Symfony based webapp for Data Science related to german EMS data from the 'IVENA' system.",
"type": "project",
"homepage": "https://github.com/nplhse/cois-hub/",
"license": "MIT",
"authors": [
{
"name": "Christoph Steltner",
"email": "mail@nplhse.com",
"homepage": "http://nplhse.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/nplhse/cois-hub/issues"
},
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.1",
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.24",
"sebastian/diff": "^4.0",
"symfony/asset": "7.0.*",
"symfony/asset-mapper": "7.0.*",
"symfony/console": "7.0.*",
"symfony/doctrine-messenger": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/expression-language": "7.0.*",
"symfony/flex": "^2",
"symfony/form": "7.0.*",
"symfony/framework-bundle": "7.0.*",
"symfony/http-client": "7.0.*",
"symfony/intl": "7.0.*",
"symfony/mailer": "7.0.*",
"symfony/mime": "7.0.*",
"symfony/monolog-bundle": "^3.0",
"symfony/notifier": "7.0.*",
"symfony/process": "7.0.*",
"symfony/property-access": "7.0.*",
"symfony/property-info": "7.0.*",
"symfony/runtime": "7.0.*",
"symfony/security-bundle": "7.0.*",
"symfony/serializer": "7.0.*",
"symfony/stimulus-bundle": "^2.13",
"symfony/string": "7.0.*",
"symfony/translation": "7.0.*",
"symfony/twig-bundle": "7.0.*",
"symfony/ux-toggle-password": "^2.13",
"symfony/ux-turbo": "^2.13",
"symfony/ux-twig-component": "^2.13",
"symfony/validator": "7.0.*",
"symfony/web-link": "7.0.*",
"symfony/yaml": "7.0.*",
"symfonycasts/reset-password-bundle": "^1.20",
"symfonycasts/verify-email-bundle": "^1.16",
"twig/cssinliner-extra": "^3.8",
"twig/extra-bundle": "^3.8",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.5",
"friendsofphp/php-cs-fixer": "^3.40",
"phpmd/phpmd": "^2.15",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-beberlei-assert": "^1.1",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.19.0",
"psalm/plugin-symfony": "^5.1",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "7.0.*",
"symfony/css-selector": "7.0.*",
"symfony/debug-bundle": "7.0.*",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*",
"vimeo/psalm": "^5.17",
"vincentlanglet/twig-cs-fixer": "^2.0",
"weirdan/doctrine-psalm-plugin": "^2.9",
"zenstruck/browser": "^1.7",
"zenstruck/foundry": "^1.36"
},
"conflict": {
"symfony/symfony": "*"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
},
"sort-packages": true,
"audit": {
"abandoned": "report"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"setup-env": [
"@php bin/console doctrine:database:drop --if-exists --force",
"@php bin/console doctrine:database:create",
"@php bin/console doctrine:migrations:migrate --no-interaction"
],
"setup-test-env": [
"@php bin/console doctrine:database:drop --if-exists --force --env test",
"@php bin/console doctrine:database:create --env test",
"@php bin/console doctrine:schema:create --env test"
],
"load-fixtures": [
"@php bin/console doctrine:fixtures:load --no-interaction"
],
"lint": [
"@php composer validate",
"@php composer audit",
"@php bin/console lint:container --no-debug",
"@php bin/console lint:yaml config",
"@php bin/console lint:xliff translations",
"@php bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction"
]
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.0.*"
}
}
}