From 7de4a303290c286a0b92c966c596e55743b916d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gamez?= Date: Tue, 8 Sep 2020 17:13:41 +0200 Subject: [PATCH] Add support for Laravel 8 --- .github/workflows/tests.yml | 4 +++- .gitignore | 1 + composer.json | 10 +++++----- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6876f84..a4b695b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,8 +11,10 @@ jobs: fail-fast: false matrix: php: ['7.4'] - laravel: ['5.8', '6.0', '7.0'] + laravel: ['5.8', '6.0', '7.0', '8.0'] include: + - laravel: '8.0' + testbench: '6.0' - laravel: '7.0' testbench: '5.2' - laravel: '6.0' diff --git a/.gitignore b/.gitignore index 7cd8356..96a78dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /build /vendor +/.phpunit.result.cache /composer.lock /google-service-account.json /phpunit.xml diff --git a/composer.json b/composer.json index a15c9f6..d71ce84 100644 --- a/composer.json +++ b/composer.json @@ -12,13 +12,13 @@ ], "require": { "php": "^7.2", - "kreait/firebase-php": "^5.0", - "illuminate/contracts": "^5.8|^6.0|^7.0", - "illuminate/support": "^5.8|^6.0|^7.0" + "kreait/firebase-php": "^5.8.1", + "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0", + "illuminate/support": "^5.8|^6.0|^7.0|^8.0" }, "require-dev": { - "laravel/lumen-framework": "^5.8|^6.0|^7.0", - "orchestra/testbench": "^3.8.6|^4.8|^5.2", + "laravel/lumen-framework": "^5.8|^6.0|^7.0|^8.0", + "orchestra/testbench": "^3.8.6|^4.8|^5.2|^6.0", "roave/better-reflection": "^3.6|^4.6" }, "autoload": {