-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
142 lines (137 loc) · 4.29 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
{
"name": "florianlechat/source-web-console",
"type": "project",
"homepage": "https://github.com/FlorianLeChat/Source-Web-Console",
"license": "MIT",
"authors": [
{
"name": "Florian Trayon",
"homepage": "https://github.com/FlorianLeChat",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/FlorianLeChat/Source-Web-Console/issues"
},
"prefer-stable": true,
"require": {
"php": ">=8.2",
"twig/twig": "3.16.*",
"twig/extra-bundle": "3.16.*",
"react/datagram": "1.10.*",
"api-platform/core": "4.0.*",
"nelmio/cors-bundle": "2.5.*",
"phpseclib/phpseclib": "3.0.*",
"league/oauth2-google": "4.0.*",
"league/oauth2-github": "3.1.*",
"phpstan/phpdoc-parser": "2.0.*",
"sentry/sentry-symfony": "5.1.*",
"easycorp/easyadmin-bundle": "4.18.*",
"xpaw/php-source-query-class": "dev-master",
"phpdocumentor/reflection-docblock": "5.6.*",
"knpuniversity/oauth2-client-bundle": "2.18.*",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/annotations": "2.0.*",
"doctrine/doctrine-bundle": "2.13.*",
"doctrine/doctrine-migrations-bundle": "3.3.*",
"symfony/flex": "2.4.*",
"symfony/lock": "7.2.*",
"symfony/form": "7.2.*",
"symfony/intl": "7.2.*",
"symfony/mime": "7.2.*",
"symfony/yaml": "7.2.*",
"symfony/cache": "7.2.*",
"symfony/asset": "7.2.*",
"symfony/finder": "7.2.*",
"symfony/dotenv": "7.2.*",
"symfony/mailer": "7.2.*",
"symfony/string": "7.2.*",
"symfony/process": "7.2.*",
"symfony/console": "7.2.*",
"symfony/runtime": "7.2.*",
"symfony/web-link": "7.2.*",
"symfony/validator": "7.2.*",
"symfony/serializer": "7.2.*",
"symfony/filesystem": "7.2.*",
"symfony/translation": "7.2.*",
"symfony/twig-bundle": "7.2.*",
"symfony/http-client": "7.2.*",
"symfony/browser-kit": "7.2.*",
"symfony/css-selector": "7.2.*",
"symfony/rate-limiter": "7.2.*",
"symfony/property-info": "7.2.*",
"symfony/monolog-bundle": "3.10.*",
"symfony/property-access": "7.2.*",
"symfony/security-bundle": "7.2.*",
"symfony/framework-bundle": "7.2.*",
"symfony/expression-language": "7.2.*",
"symfony/webpack-encore-bundle": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"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": "*",
"symfony/polyfill-php83": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"require": "7.2.*",
"allow-contrib": false
}
},
"require-dev": {
"phpmd/phpmd": "2.15.*",
"phpunit/phpunit": "11.4.*",
"phpstan/phpstan": "1.12.*",
"symfony/stopwatch": "7.2.*",
"symfony/debug-bundle": "7.2.*",
"symfony/maker-bundle": "1.61.*",
"symfony/phpunit-bridge": "7.2.*",
"phpstan/phpstan-symfony": "1.4.*",
"phpstan/phpstan-doctrine": "1.5.*",
"squizlabs/php_codesniffer": "3.11.*",
"phpstan/extension-installer": "1.4.*",
"symfony/web-profiler-bundle": "7.2.*",
"doctrine/doctrine-fixtures-bundle": "3.7.*"
}
}