-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
48 lines (48 loc) · 1.15 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
{
"name": "symfony-tools/recipes-checker",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Nicolas Grekas",
"email": "[email protected]"
}
],
"require": {
"php": ">=8",
"ext-ctype": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"symfony/console": "^5.4",
"symfony/filesystem": "^5.4",
"symfony/http-client": "^5.4",
"symfony/process": "^5.4",
"symfony/runtime": "^5.4",
"symfony/yaml": "^5.4"
},
"require-dev": {
"symfony/var-dumper": "^5.3"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}