-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.2 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
{
"name": "fivetwo/remove-symfony-polyfill",
"description": "Remove Symfony polyfills",
"type": "library",
"keywords": [
"remove",
"replace",
"symfony",
"polyfill"
],
"homepage": "https://github.com/fivetwo/remove-symfony-polyfill",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Matthew Suhocki",
"email": "matt@fivetwo.org"
}
],
"require": {
"php": ">=8.1"
},
"replace": {
"symfony/polyfill-apcu": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-icu": "*",
"symfony/polyfill-intl-messageformatter": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-util": "*",
"symfony/polyfill-uuid": "*",
"symfony/polyfill-xml": "*"
}
}