We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28e844d + 34e4b6b commit 5cfae37Copy full SHA for 5cfae37
.travis.yml
@@ -1,11 +1,23 @@
1
language: php
2
+sudo: false
3
+dist: precise
4
5
php:
6
- 5.3
7
- 5.4
8
- 5.5
9
- 5.6
10
+ - 7.0
11
+ - 7.1
12
+ - 7.2
13
+ - 7.3
14
+ - nightly
15
- hhvm
-before_script:
-- composer install --no-dev
-script: phpunit
16
+
17
+matrix:
18
+ allow_failures:
19
+ - php: nightly
20
+ - php: hhvm
21
22
+install: composer install
23
+script: vendor/bin/phpunit --coverage-clover=coverage.clover
0 commit comments