We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e912de3 commit ae3c1e4Copy full SHA for ae3c1e4
.travis.yml
@@ -0,0 +1,25 @@
1
+language: php
2
+
3
+php:
4
+ - 5.5
5
+ - 5.6
6
+ - 7.0
7
+ - hhvm
8
9
+# This triggers builds to run on the new TravisCI infrastructure.
10
+# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
11
+sudo: false
12
13
+before_script:
14
+ - travis_retry composer self-update
15
+ - travis_retry composer install --no-interaction --prefer-source
16
+ - travis_retry composer require satooshi/php-coveralls --dev
17
18
+script:
19
+ - mkdir -p build/logs
20
+ - vendor/bin/phpunit
21
+ - vendor/bin/phpcs src --standard=psr2 -sp
22
23
+after_script:
24
+ - vendor/bin/coveralls -v
25
0 commit comments