bug #102 Fix the build & add tests for Symfony 4.3 and 4.4 (pamil)

This PR was merged into the 2.0 branch.

Discussion
----------



Commits
-------

15f70c0a14 Fix the build & add tests for Symfony 4.3 and 4.4
5519b92883 Add conflict with symfony/stopwatch ^5.0
This commit is contained in:
Kamil Kokot
2019-12-09 12:58:23 +01:00
committed by GitHub
2 changed files with 7 additions and 0 deletions

View File

@@ -9,6 +9,8 @@ env:
- SYMFONY_VERSION=3.4.* - SYMFONY_VERSION=3.4.*
- SYMFONY_VERSION=4.1.* - SYMFONY_VERSION=4.1.*
- SYMFONY_VERSION=4.2.* - SYMFONY_VERSION=4.2.*
- SYMFONY_VERSION=4.3.*
- SYMFONY_VERSION=4.4.*
cache: cache:
directories: directories:
@@ -22,6 +24,7 @@ install:
- composer require symfony/http-kernel:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require symfony/http-kernel:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
- composer require symfony/proxy-manager-bridge:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require symfony/proxy-manager-bridge:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
- composer require --dev symfony/framework-bundle:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require --dev symfony/framework-bundle:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
- composer require --dev symfony/process:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
- composer require --dev symfony/yaml:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require --dev symfony/yaml:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
- composer update --prefer-dist - composer update --prefer-dist

View File

@@ -26,8 +26,12 @@
"phpstan/phpstan-shim": "^0.11", "phpstan/phpstan-shim": "^0.11",
"sylius-labs/coding-standard": "^3.0", "sylius-labs/coding-standard": "^3.0",
"symfony/framework-bundle": "^3.4|^4.1", "symfony/framework-bundle": "^3.4|^4.1",
"symfony/process": "^3.4|^4.1",
"symfony/yaml": "^3.4|^4.1" "symfony/yaml": "^3.4|^4.1"
}, },
"conflict": {
"symfony/stopwatch": "^5.0"
},
"suggest": { "suggest": {
"behat/mink-browserkit-driver": "^1.3" "behat/mink-browserkit-driver": "^1.3"
}, },