Skip to content

Commit 4f16d1b

Browse files
committed
Remove support for Laravel 10 / PHP 8.1
Laravel 10 become EOL on 2025-02-04, see https://laravel.com/docs/10.x/releases#support-policy
1 parent 1c1b1ae commit 4f16d1b

File tree

4 files changed

+12
-17
lines changed

4 files changed

+12
-17
lines changed

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,8 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
php: [8.1, 8.2, 8.3, 8.4]
29-
laravel: [^10.0, ^11.0]
30-
exclude:
31-
- php: 8.1
32-
laravel: ^11.0
28+
php: [8.2, 8.3, 8.4]
29+
laravel: [^11.0]
3330
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
3431
runs-on: ubuntu-latest
3532
env:

.github/workflows/tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,9 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
php: [8.1, 8.2, 8.3, 8.4]
29-
laravel: [^10.0, ^11.0, ^12.0]
28+
php: [8.2, 8.3, 8.4]
29+
laravel: [^11.0, ^12.0]
3030
stability: [prefer-lowest, prefer-stable]
31-
exclude:
32-
- php: 8.1
33-
laravel: ^11.0
34-
- php: 8.1
35-
laravel: ^12.0
3631
name: P=${{ matrix.php }} L=${{ matrix.laravel }} ${{ matrix.stability }}
3732
runs-on: ubuntu-latest
3833
env:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ CHANGELOG
33

44
[Next release](https://github.com/rebing/graphql-laravel/compare/9.8.0...master)
55

6+
## Removed
7+
- Support for Laravel 10 & PHP 8.1 have been removed [\# / mfn](https://github.com/rebing/graphql-laravel/pull/)
8+
69
2025-02-24, 9.8.0
710
-----------------
811

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"license": "MIT",
3535
"type": "library",
3636
"require": {
37-
"php": "^8.1",
37+
"php": "^8.2",
3838
"ext-json": "*",
39-
"illuminate/contracts": "^10.0|^11.0|^12.0",
40-
"illuminate/support": "^10.0|^11.0|^12.0",
39+
"illuminate/contracts": "^11.0|^12.0",
40+
"illuminate/support": "^11.0|^12.0",
4141
"laragraph/utils": "^2.0.1",
4242
"thecodingmachine/safe": "^3.0",
4343
"webonyx/graphql-php": "^15.0.3"
@@ -47,11 +47,11 @@
4747
"fakerphp/faker": "^1.6",
4848
"friendsofphp/php-cs-fixer": "^3",
4949
"larastan/larastan": "^3",
50-
"laravel/framework": "^10.0|^11.0|^12.0",
50+
"laravel/framework": "^11.0|^12.0",
5151
"mfn/php-cs-fixer-config": "^2",
5252
"mockery/mockery": "^1.5",
5353
"phpstan/phpstan": "^2",
54-
"orchestra/testbench": "^8.0|^9.0|^10.0",
54+
"orchestra/testbench": "^9.0|^10.0",
5555
"phpunit/phpunit": "^10.5.32 || ^11.0",
5656
"thecodingmachine/phpstan-safe-rule": "^1"
5757
},

0 commit comments

Comments
 (0)