Skip to content

Commit 8d9036c

Browse files
author
Jens Averkamp
committed
Add .travis.yml
1 parent 15eeeaf commit 8d9036c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.travis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- nightly
9+
- hhvm
10+
- hhvm-nightly
11+
12+
branches:
13+
only:
14+
- master
15+
16+
matrix:
17+
include:
18+
- php: 5.5
19+
env: SYMFONY_VERSION='2.3.* symfony/expression-language:2.4.*'
20+
- php: 5.5
21+
env: SYMFONY_VERSION=2.4.*
22+
- php: 5.5
23+
env: SYMFONY_VERSION=2.6.*
24+
- php: 5.5
25+
env: SYMFONY_VERSION='2.7.*@dev'
26+
allow_failures:
27+
- php: nightly
28+
- php: hhvm-nightly
29+
30+
before_script:
31+
- composer self-update
32+
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
33+
- composer update --prefer-source
34+
35+
script: phpunit

0 commit comments

Comments
 (0)