We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47092c2 commit 6347310Copy full SHA for 6347310
.travis.yml
@@ -1,16 +1,31 @@
1
language: php
2
+
3
php:
4
- 5.3
5
- 5.4
6
- 5.5
7
- 5.6
8
+ - 7.0
9
+ - hhvm
10
11
matrix:
- allow_failures:
- - php:
- - 5.6
12
+ allow_failures:
13
+ - php: 5.3
14
15
+ fast_finish: true
16
17
+install:
18
+ - composer selfupdate
19
+ - composer install
20
-install: composer install
21
script:
- - phpunit --configuration native.xml --coverage-text
- - phpunit --configuration mbstring.xml --coverage-text
22
+ - phpunit --configuration native.xml
23
+ - phpunit --configuration mbstring.xml
24
25
+notifications:
26
+ email:
27
+ recipients:
28
+ - [email protected]
29
30
+ on_success: always
31
+ on_failure: always
0 commit comments