From 9514a19b34f86e14a928dec07afc3e5d45128691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Merlet?= Date: Fri, 27 Mar 2015 15:28:44 +0100 Subject: [PATCH 1/2] Support Symfony from version 2.3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d2ae6f3..e6d6a0f 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ } ], "require": { - "symfony/http-kernel": "~2.4" + "symfony/http-kernel": "~2.3" }, "autoload": { "psr-0": { From e47ce07071534b396485db5c3cb13dbcd9dfe199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Merlet?= Date: Wed, 1 Apr 2015 11:46:30 +0200 Subject: [PATCH 2/2] Configure Travis build matrix --- .travis.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index de5ff68..5478573 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,14 +2,22 @@ language: php php: - 5.3 + - 5.4 - 5.5 + - 5.6 + +env: + - SYMFONY_VERSION="2.3.*" + - SYMFONY_VERSION="2.4.*" + - SYMFONY_VERSION="2.5.*" + - SYMFONY_VERSION="2.6.*" before_script: - - composer install + - composer require symfony/http-kernel:${SYMFONY_VERSION} script: - phpunit branches: only: - - master + - master