From b4d52f238f5f77880e356dca9810bbab52bf5ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vil=C3=A0?= Date: Wed, 9 Sep 2020 09:05:11 +0200 Subject: [PATCH] Laravel 8 Support (#12) --- .travis.yml | 5 +---- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b332dbd..5c52e55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,11 +10,8 @@ cache: directories: - $HOME/.composer/cache -before_script: - - curl -s http://getcomposer.org/installer | php - - php composer.phar install --dev - script: + - composer install - vendor/bin/phpunit - sonar-scanner -Dsonar.projectKey=rogervila_laravel-email-failer -Dsonar.sources=. -Dsonar.exclusions='index.php, vendor/**, tests/**' -Dsonar.php.tests.reportPath=junit-logfile.xml -Dsonar.php.coverage.reportPaths=clover.xml diff --git a/composer.json b/composer.json index 9697908..41be03a 100644 --- a/composer.json +++ b/composer.json @@ -25,11 +25,11 @@ } }, "require": { - "laravel/framework": "5.8.*|^6.0|^7.0" + "laravel/framework": "5.8.*|^6.0|^7.0|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.14", "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0", - "orchestra/testbench": "^3 || ^4 || ^5" + "orchestra/testbench": "^3 || ^4 || ^5 || ^6" } }