feature #29718 [PHPUnit bridge] Bump php version of PHPUnit-bridge (gmponos)

This PR was squashed before being merged into the 4.3-dev branch (closes #29718).

Discussion
----------

[PHPUnit bridge] Bump php version of PHPUnit-bridge

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | yes
| BC breaks?    | no (?)
| Deprecations? | no
| Tests pass?   | yes
| License       | MIT

Related to https://github.com/symfony/symfony/pull/29623#issuecomment-450400625

I checked the BC page I think I couldn't find any related to BC changes... anyway...

As far as I understood from the comment above I must target `master` branch.

Commits
-------

59313095d3 [PHPUnit bridge] Bump php version of PHPUnit-bridge
This commit is contained in:
Fabien Potencier 2019-01-01 19:14:04 +01:00
commit c4d6d15e03
2 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@ CHANGELOG
-----
* added `ClassExistsMock`
* bumped PHP version from 5.3.3 to 5.5.9
4.1.0
-----

View File

@ -16,9 +16,9 @@
}
],
"require": {
"php": ">=5.3.3 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
"php": ">=5.5.9 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
"php": "THIS BRIDGE WHEN TESTING LOWEST SYMFONY VERSIONS.",
"php": ">=5.3.3"
"php": ">=5.5.9"
},
"suggest": {
"symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader",