summaryrefslogtreecommitdiffstats
path: root/vendor/ZendXml/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ZendXml/.travis.yml')
-rw-r--r--vendor/ZendXml/.travis.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/ZendXml/.travis.yml b/vendor/ZendXml/.travis.yml
new file mode 100644
index 000000000..ad8db966f
--- /dev/null
+++ b/vendor/ZendXml/.travis.yml
@@ -0,0 +1,29 @@
+language: php
+php:
+ - 5.3
+ - 5.4
+ - 5.5
+ - 5.6
+ - hhvm
+
+matrix:
+ allow_failures:
+ - php: hhvm
+
+before_install:
+ # need to update libxml to 2.7.8 to be able to run tests using the
+ # LIBXML_HTML_NODEFDTD and LIBXML_HTML_NOIMPLIED libxml constant
+ - sudo apt-get update
+ - sudo apt-get -o DPkg::Options::="--force-confold" -y upgrade
+
+before_script:
+ - composer self-update
+ - composer install --dev
+
+script:
+ - ./vendor/bin/phpunit -c ./tests
+ - ./vendor/bin/phpcs --standard=PSR2 --ignore=tests/Bootstrap.php library tests
+
+notifications:
+ irc: "irc.freenode.org#zftalk.dev"
+ email: false