From ff7fbbf3bf13b8f65a8e1bd303a4946d3ef45796 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Thu, 1 Nov 2018 14:57:02 +0100 Subject: [PATCH] Add Travis CI configuration --- .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..509c0ff --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: php +dist: trusty +php: +- '5.5' +- '5.6' +- '7.0' +- '7.1' +- '7.2' +- '7.3' +before_script: +- composer install +script: +- composer test-all