From 64d9c2d5e315dad681ee55549df3f78b5dbd8513 Mon Sep 17 00:00:00 2001 From: Daniel Stainback Date: Tue, 26 Nov 2019 12:44:13 -0500 Subject: [PATCH] Fix tests --- .travis.yml | 6 ++++-- composer.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d4b4615..cd8bf66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,13 @@ language: php php: - - 5.5 - 5.6 + - 7.1 + - 7.2 + - 7.3 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev -script: phpunit \ No newline at end of file +script: php ./vendor/bin/phpunit \ No newline at end of file diff --git a/composer.json b/composer.json index e1b1c82..e43c2ce 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": ">=5.4.0", + "php": ">=5.6", "illuminate/support": "~5.0|~6.0", "hashids/hashids": "1.0.6" },