From 82c5c4246a98acbac6cdfeaeb5527ac7cd46fb83 Mon Sep 17 00:00:00 2001 From: Yanik Kumar Date: Fri, 23 Aug 2024 11:48:54 +0530 Subject: [PATCH 1/3] laravel 11 compatibilty --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 0c8eb1d..b87867b 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,8 @@ } ], "require": { - "php": "^8.0", - "illuminate/contracts": "^8.83.27|^9.51.0|^10.0.0", + "php": "^8.0|^8.1|^8.2", + "illuminate/contracts": "^8.83.27|^9.51.0|^10.0.0|^11.1.0", "spatie/laravel-package-tools": "^1.12" }, "require-dev": { From 6c7c524a33d4e17e951210e8aa1d00a04cf8f7df Mon Sep 17 00:00:00 2001 From: Yanik Kumar Date: Fri, 23 Aug 2024 12:01:13 +0530 Subject: [PATCH 2/3] for laravel 11 compatibilty --- .github/workflows/run-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 855d8cb..0529a85 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,9 +10,12 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.0, 8.1, 8.2] - laravel: [^8.83.27, ^9.51.0, ^10.0.0] + laravel: [^8.83.27, ^9.51.0, ^10.0.0, ^11.1.0] + testbench: [^6.25.1, ^7.22.0, ^9.0.0] stability: [prefer-lowest, prefer-stable] include: + - laravel: ^11.1.0 + testbench: ^9.0.0 - laravel: ^10.0.0 testbench: ^8.0.0 - laravel: ^9.51.0 From 1e6a3bd07e1175cd307fa3476f8e2ac378619208 Mon Sep 17 00:00:00 2001 From: Mohd Saqueib Ansari Date: Sat, 24 Aug 2024 09:33:29 +0530 Subject: [PATCH 3/3] Update run-tests.yml --- .github/workflows/run-tests.yml | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0529a85..5ceb47c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,24 +10,29 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.0, 8.1, 8.2] - laravel: [^8.83.27, ^9.51.0, ^10.0.0, ^11.1.0] - testbench: [^6.25.1, ^7.22.0, ^9.0.0] + laravel: [^9.51.0, ^10.0.0, ^11.0.0] stability: [prefer-lowest, prefer-stable] include: - - laravel: ^11.1.0 + - os: ubuntu-latest + php: 8.2 + laravel: ^11.0.0 testbench: ^9.0.0 - - laravel: ^10.0.0 + stability: prefer-stable + - os: ubuntu-latest + php: 8.2 + laravel: ^10.0.0 testbench: ^8.0.0 - - laravel: ^9.51.0 + stability: prefer-stable + - os: ubuntu-latest + php: 8.1 + laravel: ^9.51.0 testbench: ^7.22.0 - - laravel: ^8.83.27 - testbench: ^6.25.1 + stability: prefer-stable exclude: - php: 8.0 laravel: ^10.0.0 - - php: 8.1 - laravel: ^8.83.27 - + - php: 8.0 + laravel: ^11.0.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}