From 13a51715f8e066b0bfb637fd9065d7496c3579ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20C=C3=A1mara?= Date: Thu, 5 Mar 2020 12:19:05 -0300 Subject: [PATCH] Laravel 7 Support (#706) * Laravel 7 Support * use local phpunit to run test * removed .phpunit.result.cache --- .travis.yml | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 98b874a..0249f86 100755 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ before_script: - composer self-update - composer install --prefer-dist --no-interaction -script: phpunit -d memory_limit=1024M +script: ./vendor/bin/phpunit -d memory_limit=1024M matrix: fast_finish: true diff --git a/composer.json b/composer.json index 5250162..c643de4 100644 --- a/composer.json +++ b/composer.json @@ -13,11 +13,11 @@ ], "require": { "php": ">=7.1.0", - "laravel/framework": "~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0||~5.8.0||^6.0" + "laravel/framework": "~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0||~5.8.0||^6.0||^7.0" }, "require-dev": { "orchestra/testbench-browser-kit": "~3.4|~3.8|~4.0", - "phpunit/phpunit": "6.0.*|8.0.*" + "phpunit/phpunit": "6.0.*|^8.0" }, "suggest": { "ext-intl": "*"