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 c258d67 + 2530ff0 commit 662cfdcCopy full SHA for 662cfdc
.travis.yml
@@ -0,0 +1,25 @@
1
+language: php
2
+
3
+php:
4
+ - 5.5
5
+ - 5.6
6
+ - 7.0
7
+ - nightly
8
+ - hhvm
9
10
+matrix:
11
+ allow_failures:
12
+ - php: nightly
13
+ fast_finish: true
14
15
+cache:
16
+ directories:
17
+ - $HOME/.composer/cache
18
19
+install:
20
+ - composer install
21
+ - composer show
22
23
+script:
24
+ - find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
25
+ - $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
0 commit comments