summaryrefslogtreecommitdiff
path: root/vendor/zendframework/zendxml/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zendxml/.travis.yml')
-rw-r--r--vendor/zendframework/zendxml/.travis.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/vendor/zendframework/zendxml/.travis.yml b/vendor/zendframework/zendxml/.travis.yml
new file mode 100644
index 00000000..877b0650
--- /dev/null
+++ b/vendor/zendframework/zendxml/.travis.yml
@@ -0,0 +1,43 @@
+sudo: false
+
+language: php
+
+branches:
+ except:
+ - /^release-.*$/
+ - /^ghgfk-.*$/
+
+cache:
+ directories:
+ - $HOME/.composer/cache
+
+matrix:
+ allow_failures:
+ - php: hhvm
+matrix:
+ fast_finish: true
+ include:
+ - php: 5.3
+ - php: 5.4
+ - php: 5.5
+ env:
+ - EXECUTE_CS_CHECK=true
+ - php: 5.6
+ - php: 7
+ - php: hhvm
+ allow_failures:
+ - php: hhvm
+
+before_install:
+ - composer self-update
+
+install:
+ - travis_retry composer install --no-interaction --ignore-platform-reqs
+
+script:
+ - ./vendor/bin/phpunit -c ./tests
+ - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=tests/Bootstrap.php library tests ; fi
+
+notifications:
+ irc: "irc.freenode.org#zftalk.dev"
+ email: false