Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit f0c230e

Browse files
committed
Added testing on more versions
This tests on PHP 5.6 and 5.6 and HHVM. It also adds some builds with specific Symfony versions rather than the latest stable.
1 parent c4fec6f commit f0c230e

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.travis.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,20 @@ language: php
33
php:
44
- 5.3
55
- 5.4
6+
- 5.5
7+
- 5.6
8+
- hhvm
9+
10+
matrix:
11+
include:
12+
- php: 5.5
13+
env: SYMFONY_VERSION='2.3.*'
14+
- php: 5.5
15+
env: SYMFONY_VERSION='2.5.*@dev'
616

717
before_script:
8-
- curl -s http://getcomposer.org/installer | php
9-
- php composer.phar install --dev
18+
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
19+
- composer install --no-interaction --prefer-source
1020

1121
notifications:
1222
email:

0 commit comments

Comments
 (0)