test different Symfony2 versions

This commit is contained in:
Lukas Kahwe Smith 2013-09-18 14:58:45 +02:00 committed by Francis Besset
parent adb1d9bd89
commit 8f6dab8816
1 changed files with 18 additions and 5 deletions

View File

@ -1,10 +1,23 @@
language: php language: php
php: php:
- 5.3 - 5.3
- 5.4 - 5.4
- 5.5 - 5.5
env:
- SYMFONY_VERSION=2.0.*
- SYMFONY_VERSION=2.1.*
- SYMFONY_VERSION=2.2.*
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=dev-master
before_script: before_script:
- curl -s http://getcomposer.org/installer | php - composer require symfony/symfony:${SYMFONY_VERSION} --no-interaction --prefer-source
- php composer.phar install --dev --prefer-source
script:
- phpunit --coverage-text
matrix:
allow_failures:
- env: SYMFONY_VERSION=dev-master