From 15f70c0a14bf922b7f6263431a330d6f82883e90 Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Mon, 9 Dec 2019 12:01:38 +0100 Subject: [PATCH 1/2] Fix the build & add tests for Symfony 4.3 and 4.4 --- .travis.yml | 3 +++ composer.json | 1 + 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4b4e47e..afc7625 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,8 @@ env: - SYMFONY_VERSION=3.4.* - SYMFONY_VERSION=4.1.* - SYMFONY_VERSION=4.2.* + - SYMFONY_VERSION=4.3.* + - SYMFONY_VERSION=4.4.* cache: directories: @@ -22,6 +24,7 @@ install: - 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 --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 update --prefer-dist diff --git a/composer.json b/composer.json index 48dd97c..e772b39 100644 --- a/composer.json +++ b/composer.json @@ -26,6 +26,7 @@ "phpstan/phpstan-shim": "^0.11", "sylius-labs/coding-standard": "^3.0", "symfony/framework-bundle": "^3.4|^4.1", + "symfony/process": "^3.4|^4.1", "symfony/yaml": "^3.4|^4.1" }, "suggest": { From 5519b92883f39ad837d87c6a23d3b5efd7395958 Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Mon, 9 Dec 2019 12:36:00 +0100 Subject: [PATCH 2/2] Add conflict with symfony/stopwatch ^5.0 symfony/http-kernel 4.1.* and 4.2.* causes fatal error when symfony/stopwatch 5.0.* is installed --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index e772b39..576a1fc 100644 --- a/composer.json +++ b/composer.json @@ -29,6 +29,9 @@ "symfony/process": "^3.4|^4.1", "symfony/yaml": "^3.4|^4.1" }, + "conflict": { + "symfony/stopwatch": "^5.0" + }, "suggest": { "behat/mink-browserkit-driver": "^1.3" },