8000 Use symfony/polyfill-ctype · symfony/symfony@afc09cc · GitHub
[go: up one dir, main page]

Skip to content

Commit afc09cc

Browse files
BackEndTeanicolas-grekas
authored andcommitted
Use symfony/polyfill-ctype
Use the polyfill for every package that uses cytpe functions.
1 parent 222fef4 commit afc09cc

File tree

16 files changed

+28
-12
lines changed

16 files changed

+28
-12
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"doctrine/common": "~2.4",
2222
"paragonie/random_compat": "~1.0",
2323
"symfony/polyfill-apcu": "~1.1",
24+
"symfony/polyfill-ctype": "~1.8", 10000
2425
"symfony/polyfill-mbstring": "~1.1",
2526
"twig/twig": "~1.34|~2.4",
2627
"psr/log": "~1.0"

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
],
1818
"require": {
1919
"php": ">=5.3.9",
20-
"doctrine/common": "~2.4"
20+
"doctrine/common": "~2.4",
21+
"symfony/polyfill-ctype": "~1.8"
2122
},
2223
"require-dev": {
2324
"symfony/stopwatch": "~2.2",

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"symfony/twig-bridge": "~2.7",
2222
"twig/twig": "~1.34|~2.4",
2323
"symfony/http-foundation": "~2.5",
24-
"symfony/http-kernel": "~2.7.23|^2.8.16"
24+
"symfony/http-kernel": "~2.7.23|^2.8.16",
25+
"symfony/polyfill-ctype": "~1.8"
2526
},
2627
"require-dev": {
2728
"symfony/stopwatch": "~2.2",

src/Symfony/Component/Config/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
],
1818
"require": {
1919
"php": ">=5.3.9",
20-
"symfony/filesystem": "~2.3"
20+
"symfony/filesystem": "~2.3",
21+
"symfony/polyfill-ctype": "~1.8"
2122
},
2223
"require-dev": {
2324
"symfony/yaml": "~2.7"

src/Symfony/Component/DomCrawler/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
21< B41A /code>22
"require-dev": {
2223
"symfony/css-selector": "~2.3"

src/Symfony/Component/ExpressionLanguage/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"autoload": {
2223
"psr-4": { "Symfony\\Component\\ExpressionLanguage\\": "" },

src/Symfony/Component/Filesystem/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"autoload": {
2223
"psr-4": { "Symfony\\Component\\Filesystem\\": "" },

src/Symfony/Component/Form/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"symfony/event-dispatcher": "~2.1",
2121
"symfony/intl": "~2.7.25|^2.8.18",
2222
"symfony/options-resolver": "~2.6",
23+
"symfony/polyfill-ctype": "~1.8",
2324
"symfony/property-access": "~2.3"
2425
},
2526
"require-dev": {

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"symfony/event-dispatcher": "^2.6.7",
2121
"symfony/http-foundation": "~2.7.36|^2.8.29",
2222
"symfony/debug": "^2.6.2",
23+
"symfony/polyfill-ctype": "~1.8",
2324
"psr/log": "~1.0"
2425
},
2526
"require-dev": {

src/Symfony/Component/Intl/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
}
2525
],
2626
"require": {
27-
"php": ">=5.3.9"
27+
"php": ">=5.3.9",
28+
"symfony/polyfill-ctype": "~1.8"
2829
},
2930
"require-dev": {
3031
"symfony/filesystem": "~2.1"

src/Symfony/Component/PropertyAccess/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"autoload": {
2223
"psr-4": { "Symfony\\Component\\PropertyAccess\\": "" },

src/Symfony/Component/Security/Csrf/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"symfony/security-core": "~2.4"
2121
},
2222
"require-dev": {
23-
"symfony/http-foundation": "~2.7"
23+
"symfony/http-foundation": "~2.7",
24+
"symfony/polyfill-ctype": "~1.8"
2425
},
2526
"conflict": {
2627
"symfony/http-foundation": "<2.7.38|~2.8,<2.8.31"

src/Symfony/Component/Serializer/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"symfony/yaml": "^2.0.5",

src/Symfony/Component/Templating/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"psr/log": "~1.0"

src/Symfony/Component/Validator/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8",
2021
"symfony/translation": "~2.4"
2122
},
2223
"require-dev": {

src/Symfony/Component/Yaml/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.3.9"
19+
"php": ">=5.3.9",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"autoload": {
2223
"psr-4": { "Symfony\\Component\\Yaml\\": "" },

0 commit comments

Comments
 (0)
0