From 1a54b4bc2fcdf1d5a9fa1f88fe36f813075a816e Mon Sep 17 00:00:00 2001 From: Robert-John van Doesburg Date: Mon, 28 Feb 2022 08:30:23 +0100 Subject: [PATCH 1/4] Update symfony/http-foundation, allow ^6.0 --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 01c5c42..a4e6328 100644 --- a/composer.json +++ b/composer.json @@ -21,8 +21,7 @@ ], "require": { "php": "^7.3|^8.0", - "illuminate/http": "^7.0|^8.0", - "symfony/http-foundation": "^4.3.4|>=5.1.3" + "symfony/http-foundation": "^4.3.4|>=5.1.3|^6.0" }, "require-dev": { "phpunit/phpunit": "^8.0 || ^9.0", From bd5f479fc325775a0d094d3efa98e6838e09e3fe Mon Sep 17 00:00:00 2001 From: arondeparon Date: Mon, 28 Feb 2022 09:13:44 +0100 Subject: [PATCH 2/4] Add tests for L9, drop PHP 7.* support --- .github/workflows/run-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d762f62..ae9a546 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,14 +9,14 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 7.4, 7.3] - laravel: [8.*, 7.*] + php: [8.0] + laravel: [9.*, 8.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 8.* + testbench: 7.* - laravel: 8.* testbench: 6.* - - laravel: 7.* - testbench: 5.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} From 51fc3dfb7cdda3a36759c26075167f21c2574fda Mon Sep 17 00:00:00 2001 From: arondeparon Date: Mon, 28 Feb 2022 09:17:40 +0100 Subject: [PATCH 3/4] Add testbench 7 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a4e6328..c3a0190 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ }, "require-dev": { "phpunit/phpunit": "^8.0 || ^9.0", - "orchestra/testbench": "^5.0|^6.0", + "orchestra/testbench": "^5.0|^6.0|^7.0", "mockery/mockery": "^1.4" }, "autoload": { From bcb2ce476fa296fb6913e08c065a4dd2c176552f Mon Sep 17 00:00:00 2001 From: arondeparon Date: Mon, 28 Feb 2022 09:21:23 +0100 Subject: [PATCH 4/4] At it again. Committing things over and over to satisfy GH actions --- .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 ae9a546..16a34e5 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,10 +13,12 @@ jobs: laravel: [9.*, 8.*] dependency-version: [prefer-lowest, prefer-stable] include: - - laravel: 8.* + - laravel: 9.* testbench: 7.* - laravel: 8.* testbench: 6.* + - laravel: 8.* + testbench: 6.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}