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.
1 parent 4258c93 commit a046af6Copy full SHA for a046af6
.travis.yml
@@ -0,0 +1,35 @@
1
+language: php
2
+php:
3
+ - 5.5
4
+ - 5.6
5
+ - 7.0
6
+ - 7.1
7
+ - hhvm
8
+ - nightly
9
+
10
+matrix:
11
+ allow_failures:
12
+ - php:
13
14
15
16
+cache:
17
+ directories:
18
+ - $HOME/.composer/cache
19
20
+script:
21
+ - vendor/bin/phpunit --coverage-clover=coverage.clover -v
22
+ - composer update --no-interaction --prefer-source
23
+ - vendor/bin/phpunit -v
24
25
+before_script:
26
+ - composer install --no-interaction
27
28
+after_script:
29
+ - if [ $TRAVIS_PHP_VERSION = '5.6' ]; then wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
30
31
+notifications:
32
+ irc: "irc.freenode.org#phpdocumentor"
33
+ email:
34
+ - [email protected]
35
0 commit comments