From 959161bc591d4afd1adcca1f082068b8b1591738 Mon Sep 17 00:00:00 2001 From: Laravel Shift Date: Tue, 8 Sep 2020 02:46:39 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 8 --- composer.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index c628ef2..4feba32 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,10 @@ "name": "mpociot/teamwork", "license": "MIT", "description": "User to Team associations for the Laravel 5 Framework", - "keywords": ["Teams","Invite"], + "keywords": [ + "Teams", + "Invite" + ], "homepage": "http://github.com/mpociot/teamwork", "authors": [ { @@ -15,15 +18,15 @@ "source": "https://github.com/mpociot/teamwork" }, "minimum-stability": "dev", - "prefer-stable" : true, + "prefer-stable": true, "require": { "php": "^7.2.5", - "laravel/framework": "^6.0|^7.0" + "laravel/framework": "^6.0|^7.0|^8.0" }, "require-dev": { - "mockery/mockery": "^1.3.1", - "illuminate/database": "^6.0|^7.0", - "orchestra/testbench": "^4.0|^5.0", + "mockery/mockery": "^1.3.1|^1.3.1", + "illuminate/database": "^6.0|^7.0|^8.0", + "orchestra/testbench": "^4.0|^5.0|^6.0", "doctrine/dbal": "^2.10" }, "config": { From cfbf901243ad7fa7de0eb6a257a5a7c0c9ae3f44 Mon Sep 17 00:00:00 2001 From: Laravel Shift Date: Tue, 8 Sep 2020 02:46:39 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 8 --- .github/workflows/run-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6c7733f..880442b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,9 +10,11 @@ jobs: matrix: os: [ubuntu-latest] php: [7.4, 7.3, 7.2] - laravel: [7.*, 6.*] + laravel: [8.*, 7.*, 6.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 8.* + testbench: 6.* - laravel: 7.* testbench: 5.* - laravel: 6.*