From 9fd9751e0eae5ca7094b998c4aa6482b3dd82f36 Mon Sep 17 00:00:00 2001 From: Ahmet Date: Mon, 23 May 2016 10:03:46 +0000 Subject: [PATCH] travis intagration --- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a848568 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: php + +php: + - '5.4' + - '5.5' + - '5.6' + - '7.0' + - hhvm + +env: + - DB=sqlite3 + +before_script: + - composer self-update + - composer install --prefer-source --no-interaction --dev + +script: vendor/bin/phpunit + +matrix: + allow_failures: + - php: 5.6 + - php: hhvm + fast_finish: true