From 7437b6d100c1528831ec03a862928f1f45b0f1b8 Mon Sep 17 00:00:00 2001 From: Hiroaki Matsuura Date: Wed, 11 Jan 2017 10:28:43 +0900 Subject: [PATCH] add travis settings --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1b021fc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: php + +php: + - '5.5' + - '5.6' + - '7.0' + - '7.1' + - hhvm + - nightly + +before_script: composer install + +script: phpunit --configuration phpunit.xml.dist