From 96c183a616b83194b0567ae2045f6bb18d034996 Mon Sep 17 00:00:00 2001 From: Mikael Roos Date: Wed, 4 Mar 2015 11:11:28 +0100 Subject: [PATCH] adding support for travis, fix #15 --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6413b70 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: php +php: + - 5.6 + - 5.5 + - 5.4 + - hhvm + +before_script: + - wget https://scrutinizer-ci.com/ocular.phar + +script: + - phpunit + +after_script: + - php ocular.phar code-coverage:upload --format=php-clover coverage.clover