Merge pull request #1331 from markuspoerschke/run-test-with-php72

Run CI pipeline with PHP 7.2
This commit is contained in:
David Buchmann 2018-05-28 15:15:02 +02:00 committed by GitHub
commit 8678a21fdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false

View File

@ -35,7 +35,7 @@
"symfony/dom-crawler": "^3.4|^4.0",
"symfony/browser-kit": "^3.4|^4.0",
"symfony/cache": "^3.4|^4.0",
"symfony/phpunit-bridge": "^3.4",
"symfony/phpunit-bridge": "^3.4|^4.0",
"symfony/stopwatch": "^3.4|^4.0",
"sensio/framework-extra-bundle": "^3.0",
"doctrine/annotations": "^1.2",

View File

@ -5,5 +5,5 @@ if (!file_exists(__DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit')) {
exit(1);
}
putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
putenv('SYMFONY_PHPUNIT_VERSION=6.0');
putenv('SYMFONY_PHPUNIT_VERSION=6.5');
require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';