Skip to content

Commit 7644f53

Browse files
committed
[CI] Updated Travis config
| Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | * Take advantage of container-based infrastructure * Added matrix for PHP-5.6, PHP-nightly and HHVM
1 parent 540e4f6 commit 7644f53

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.travis.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
language: php
22

3-
php:
4-
- 5.3
5-
- 5.4
6-
- 5.5
3+
sudo: false
74

8-
before_script:
9-
- composer --prefer-source --dev install
5+
before_install:
6+
- composer self-update
7+
8+
install:
9+
- composer install --prefer-source
10+
11+
matrix:
12+
include:
13+
- php: 5.3
14+
- php: 5.4
15+
- php: 5.5
16+
- php: 5.6
17+
- php: nightly
18+
- php: hhvm
19+
allow_failures:
20+
- php: nightly
21+
- php: hhvm
1022

1123
script: ./vendor/bin/phpunit

0 commit comments

Comments
 (0)