summaryrefslogtreecommitdiffstats
path: root/vendor/ZendXml/.travis.yml
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-24 12:23:38 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-24 12:23:38 +0100
commit886647d1caf7181e947a2e771600d1addfaf53ac (patch)
tree8f821a5baa0837eaa34ebb2a180357440867bf1b /vendor/ZendXml/.travis.yml
parent7025965caaa5eef6f7e6c0e0df89eff453691367 (diff)
update zendxml
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