10000 minor #33094 Bump minimal requirements (jderusse) · symfony/symfony@45d449c · GitHub
[go: up one dir, main page]

Skip to content

Commit 45d449c

Browse files
minor #33094 Bump minimal requirements (jderusse)
This PR was merged into the 4.3 branch. Discussion ---------- Bump minimal requirements | Q | A | ------------- | --- | Branch? | 4.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Follow up #33079 Fix failures with lowest requirements in branch 4.3 Commits ------- c874d3b Bump minimal requirements
2 parents 9d9f558 + c874d3b commit 45d449c

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"symfony/proxy-manager-bridge": "~3.4|~4.0",
3636
"symfony/security-core": "~3.4|~4.0",
3737
"symfony/expression-language": "~3.4|~4.0",
38-
"symfony/validator": "~3.4|~4.0",
38+
"symfony/validator": "^3.4.31|^4.3.4",
3939
"symfony/translation": "~3.4|~4.0",
4040
"doctrine/annotations": "~1.0",
4141
"doctrine/cache": "~1.6",

src/Symfony/Bundle/SecurityBundle/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"symfony/css-selector": "~3.4|~4.0",
3434
"symfony/dom-crawler": "~3.4|~4.0",
3535
"symfony/form": "~3.4|~4.0",
36-
"symfony/framework-bundle": "~4.2",
36+
"symfony/framework-bundle": "^4.3.4",
3737
"symfony/http-foundation": "~3.4|~4.0",
3838
"symfony/translation": "~3.4|~4.0",
3939
"symfony/twig-bundle": "~4.2",
@@ -50,7 +50,7 @@
5050
"symfony/browser-kit": "<4.2",
5151
"symfony/twig-bundle": "<4.2",
5252
"symfony/var-dumper": "<3.4",
53-
"symfony/framework-bundle": "<4.2",
53+
"symfony/framework-bundle": "<4.3.4",
5454
"symfony/console": "<3.4"
5555
},
5656
"autoload": {

src/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,8 +1288,8 @@ public function testNoClassFromGlobalNamespaceClassIdWithLeadingSlash()
12881288

12891289
public function testNoClassFromNamespaceClassIdWithLeadingSlash()
12901290
{
1291-
$this->expectException('Symfony\Component\DependencyInjection\Exception\RuntimeException');
1292-
$this->expectExceptionMessage('The definition for "\Symfony\Component\DependencyInjection\Tests\FooClass" has no class attribute, and appears to reference a class or interface. Please specify the class attribute explicitly or remove the leading backslash by renaming the service to "Symfony\Component\DependencyInjection\Tests\FooClass" to get rid of this error.');
1291+
$this->expectException('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException');
1292+
$this->expectExceptionMessage('Service definition "\Symfony\Component\DependencyInjection\Tests\FooClass" has no class, and its name looks like a FQCN but it starts with a backslash; remove the leading backslash.');
12931293
$container = new ContainerBuilder();
12941294

12951295
$container->register('\\'.FooClass::class);

src/Symfony/Component/DependencyInjection/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^7.1.3",
2020
"psr/container": "^1.0",
21-
"symfony/service-contracts": "^1.1.2"
21+
"symfony/service-contracts": "^1.1.6"
2222
},
2323
"require-dev": {
2424
"symfony/yaml": "~3.4|~4.0",

src/Symfony/Component/Form/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"require-dev": {
2929
"doctrine/collections": "~1.0",
30-
"symfony/validator": "~3.4|~4.0",
30+
"symfony/validator": "^3.4.31|^4.3.4",
3131
"symfony/dependency-injection": "~3.4|~4.0",
3232
"symfony/config": "~3.4|~4.0",
3333
"symfony/console": "^4.3",

src/Symfony/Component/HttpClient/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"require": {
2222
"php": "^7.1.3",
2323
"psr/log": "^1.0",
24-
"symfony/http-client-contracts": "^1.1.4",
24+
"symfony/http-client-contracts": "^1.1.6",
2525
"symfony/polyfill-php73": "^1.11"
2626
},
2727
"require-dev": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"symfony/expression-language": "~3.4|~4.0",
2727
"symfony/http-foundation": "~3.4|~4.0",
2828
"symfony/ldap": "~3.4|~4.0",
29-
"symfony/validator": "~3.4|~4.0",
29+
"symfony/validator": "^3.4.31|^4.3.4",
3030
"psr/log": "~1.0"
3131
},
3232
"conflict": {

src/Symfony/Component/Security/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"symfony/polyfill-ctype": "~1.8",
3636
"symfony/polyfill-intl-icu": "~1.0",
3737
"symfony/routing": "~3.4|~4.0",
38-
"symfony/validator": "~3.4|~4.0",
38+
"symfony/validator": "^3.4.31|^4.3.4",
3939
"symfony/expression-language": "~3.4|~4.0",
4040
"symfony/ldap": "~3.4|~4.0",
4141
"psr/log": "~1.0"

src/Symfony/Component/Translation/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^7.1.3",
2020
"symfony/polyfill-mbstring": "~1.0",
21-
"symfony/translation-contracts": "^1.1.2"
21+
"symfony/translation-contracts": "^1.1.6"
2222
},
2323
"require-dev": {
2424
"symfony/config": "~3.4|~4.0",

0 commit comments

Comments
 (0)
0