Skip to content

Commit d94d9d7

Browse files
Bump Symfony 5.0 to PHP 7.2
1 parent 66924db commit d94d9d7

File tree

81 files changed

+107
-181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+107
-181
lines changed

.appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ init:
1010
- SET PATH=c:\php;%PATH%
1111
- SET COMPOSER_NO_INTERACTION=1
1212
- SET SYMFONY_DEPRECATIONS_HELPER=strict
13-
- SET "SYMFONY_REQUIRE=>=4.2"
13+
- SET "SYMFONY_REQUIRE=>=4.4"
1414
- SET ANSICON=121x90 (121x90)
1515
- REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Command Processor" /v DelayedExpansion /t REG_DWORD /d 1 /f
1616

1717
install:
1818
- mkdir c:\php && cd c:\php
19-
- appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-7.1.3-Win32-VC14-x86.zip
20-
- 7z x php-7.1.3-Win32-VC14-x86.zip -y >nul
19+
- appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-7.2.9-Win32-VC15-x86.zip
20+
- 7z x php-7.2.9-Win32-VC15-x86.zip -y >nul
2121
- cd ext
22-
- appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php_apcu-5.1.8-7.1-ts-vc14-x86.zip
23-
- 7z x php_apcu-5.1.8-7.1-ts-vc14-x86.zip -y >nul
22+
- appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php_apcu-5.1.17-7.2-ts-vc15-x86.zip
23+
- 7z x php_apcu-5.1.17-7.2-ts-vc15-x86.zip -y >nul
2424
- cd ..
2525
- copy /Y php.ini-development php.ini-min
2626
- echo memory_limit=-1 >> php.ini-min

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ addons:
1717

1818
env:
1919
global:
20-
- MIN_PHP=7.1.3
20+
- MIN_PHP=7.2.9
2121
- SYMFONY_PROCESS_PHP_TEST_BINARY=~/.phpenv/shims/php
2222
- MESSENGER_AMQP_DSN=amqp://localhost/%2f/messages
2323
- MESSENGER_REDIS_DSN=redis://127.0.0.1:7001/messages
2424

2525
matrix:
2626
include:
27-
- php: 7.1
27+
- php: 7.2
2828
- php: 7.2
2929
env: deps=high
3030
- php: 7.3
@@ -215,7 +215,7 @@ install:
215215
- |
216216
# Install symfony/flex
217217
if [[ $deps = low ]]; then
218-
export SYMFONY_REQUIRE='>=2.3'
218+
export SYMFONY_REQUIRE='>=3.4'
219219
else
220220
export SYMFONY_REQUIRE=">=$SYMFONY_VERSION"
221221
fi

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"ext-xml": "*",
2121
"doctrine/event-manager": "~1.0",
2222
"doctrine/persistence": "~1.0",
@@ -31,7 +31,6 @@
3131
"symfony/polyfill-intl-icu": "~1.0",
3232
"symfony/polyfill-intl-idn": "^1.10",
3333
"symfony/polyfill-mbstring": "~1.0",
34-
"symfony/polyfill-php72": "~1.5",
3534
"symfony/polyfill-php73": "^1.11"
3635
},
3736
"replace": {

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"doctrine/event-manager": "~1.0",
2121
"doctrine/persistence": "~1.0",
2222
"symfony/polyfill-ctype": "~1.8",

src/Symfony/Bridge/Monolog/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"monolog/monolog": "~1.19",
2121
"symfony/service-contracts": "^1.1",
2222
"symfony/http-kernel": "^4.3|^5.0"

src/Symfony/Bridge/ProxyManager/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/dependency-injection": "^4.0|^5.0",
2121
"ocramius/proxy-manager": "~2.1"
2222
},

src/Symfony/Bridge/Twig/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"twig/twig": "^1.41|^2.10"
2121
},
2222
"require-dev": {

src/Symfony/Bundle/DebugBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"ext-xml": "*",
2121
"symfony/http-kernel": "^3.4|^4.0|^5.0",
2222
"symfony/twig-bridge": "^3.4|^4.0|^5.0",

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"ext-xml": "*",
2121
"symfony/cache": "^4.3|^5.0",
2222
"symfony/config": "^4.2|^5.0",

src/Symfony/Bundle/SecurityBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"ext-xml": "*",
2121
"symfony/config": "^4.2|^5.0",
2222
"symfony/dependency-injection": "^4.2|^5.0",

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/config": "^4.2|^5.0",
2121
"symfony/twig-bridge": "^4.3|^5.0",
2222
"symfony/http-foundation": "^4.3|^5.0",

src/Symfony/Bundle/WebProfilerBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/config": "^4.2|^5.0",
2121
"symfony/http-kernel": "^4.3|^5.0",
2222
"symfony/routing": "^3.4|^4.0|^5.0",

src/Symfony/Bundle/WebServerBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/config": "^3.4|^4.0|^5.0",
2121
"symfony/console": "^3.4|^4.0|^5.0",
2222
"symfony/dependency-injection": "^3.4|^4.0|^5.0",

src/Symfony/Component/Asset/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.2.9"
2020
},
2121
"suggest": {
2222
"symfony/http-foundation": ""

src/Symfony/Component/BrowserKit/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/dom-crawler": "^3.4|^4.0|^5.0"
2121
},
2222
"require-dev": {

src/Symfony/Component/Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"symfony/cache-implementation": "1.0"
2222
},
2323
"require": {
24-
"php": "^7.1.3",
24+
"php": "^7.2.9",
2525
"psr/cache": "~1.0",
2626
"psr/log": "~1.0",
2727
"symfony/cache-contracts": "^1.1",

src/Symfony/Component/Config/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/filesystem": "^3.4|^4.0|^5.0",
2121
"symfony/polyfill-ctype": "~1.8"
2222
},

src/Symfony/Component/Console/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/polyfill-mbstring": "~1.0",
2121
"symfony/polyfill-php73": "^1.8",
2222
"symfony/service-contracts": "^1.1"

src/Symfony/Component/CssSelector/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.1.3"
23+
"php": "^7.2.9"
2424
},
2525
"autoload": {
2626
"psr-4": { "Symfony\\Component\\CssSelector\\": "" },

src/Symfony/Component/Debug/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"psr/log": "~1.0"
2121
},
2222
"conflict": {

src/Symfony/Component/DependencyInjection/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"psr/container": "^1.0",
2121
"symfony/service-contracts": "^1.1.2"
2222
},

src/Symfony/Component/DomCrawler/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/polyfill-ctype": "~1.8",
2121
"symfony/polyfill-mbstring": "~1.0"
2222
},

src/Symfony/Component/Dotenv/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.2.9"
2020
},
2121
"require-dev": {
2222
"symfony/process": "^3.4|^4.0|^5.0"

src/Symfony/Component/EventDispatcher/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/event-dispatcher-contracts": "^1.1"
2121
},
2222
"require-dev": {

src/Symfony/Component/ExpressionLanguage/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/cache": "^3.4|^4.0|^5.0",
2121
"symfony/service-contracts": "^1.1"
2222
},

src/Symfony/Component/Filesystem/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/polyfill-ctype": "~1.8"
2121
},
2222
"autoload": {

src/Symfony/Component/Finder/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.2.9"
2020
},
2121
"autoload": {
2222
"psr-4": { "Symfony\\Component\\Finder\\": "" },

src/Symfony/Component/Form/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/event-dispatcher": "^4.3|^5.0",
2121
"symfony/intl": "^4.3|^5.0",
2222
"symfony/options-resolver": "~4.3|^5.0",

src/Symfony/Component/HttpClient/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"symfony/http-client-implementation": "1.1"
2020
},
2121
"require": {
22-
"php": "^7.1.3",
22+
"php": "^7.2.9",
2323
"psr/log": "^1.0",
2424
"symfony/http-client-contracts": "^1.1",
2525
"symfony/polyfill-php73": "^1.11"

src/Symfony/Component/HttpFoundation/Tests/ResponseFunctionalTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
use PHPUnit\Framework\TestCase;
1515

16-
/**
17-
* @requires PHP 7.0
18-
*/
1916
class ResponseFunctionalTest extends TestCase
2017
{
2118
private static $server;

src/Symfony/Component/HttpFoundation/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/mime": "^4.3|^5.0",
2121
"symfony/polyfill-mbstring": "~1.1"
2222
},

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/event-dispatcher": "^4.3|^5.0",
2121
"symfony/http-foundation": "^4.1.1|^5.0",
2222
"symfony/debug": "^3.4|^4.0|^5.0",

src/Symfony/Component/Inflector/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^7.1.3",
26+
"php": "^7.2.9",
2727
"symfony/polyfill-ctype": "~1.8"
2828
},
2929
"autoload": {

src/Symfony/Component/Intl/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
],
2626
"require": {
27-
"php": "^7.1.3",
27+
"php": "^7.2.9",
2828
"symfony/polyfill-intl-icu": "~1.0"
2929
},
3030
"require-dev": {

src/Symfony/Component/Ldap/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/options-resolver": "^4.2|^5.0",
2121
"ext-ldap": "*"
2222
},

src/Symfony/Component/Lock/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"psr/log": "~1.0"
2121
},
2222
"require-dev": {

src/Symfony/Component/Mailer/Bridge/Amazon/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/mailer": "^4.3|^5.0"
2121
},
2222
"require-dev": {

src/Symfony/Component/Mailer/Bridge/Google/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/mailer": "^4.3|^5.0"
2121
},
2222
"require-dev": {

src/Symfony/Component/Mailer/Bridge/Mailchimp/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/mailer": "^4.3|^5.0"
2121
},
2222
"require-dev": {

src/Symfony/Component/Mailer/Bridge/Mailgun/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3",
19+
"php": "^7.2.9",
2020
"symfony/mailer": "^4.3|^5.0"
2121
},
2222
"require-dev": {

0 commit comments

Comments
 (0)