Skip to content

Commit

Permalink
Merge pull request #1170 from mfn/mfn/l10-goodbye
Browse files Browse the repository at this point in the history
Remove support for Laravel 10 / PHP 8.1
  • Loading branch information
mfn authored Feb 24, 2025
2 parents 1c1b1ae + 2d8f23a commit cef5b7e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 17 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3, 8.4]
laravel: [^10.0, ^11.0]
exclude:
- php: 8.1
laravel: ^11.0
php: [8.2, 8.3, 8.4]
laravel: [^11.0]
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
runs-on: ubuntu-latest
env:
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3, 8.4]
laravel: [^10.0, ^11.0, ^12.0]
php: [8.2, 8.3, 8.4]
laravel: [^11.0, ^12.0]
stability: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: ^11.0
- php: 8.1
laravel: ^12.0
name: P=${{ matrix.php }} L=${{ matrix.laravel }} ${{ matrix.stability }}
runs-on: ubuntu-latest
env:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ CHANGELOG

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

## Removed
- Support for Laravel 10 & PHP 8.1 have been removed [\#1170 / mfn](https://github.com/rebing/graphql-laravel/pull/1170)

2025-02-24, 9.8.0
-----------------

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"illuminate/contracts": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0",
"laragraph/utils": "^2.0.1",
"thecodingmachine/safe": "^3.0",
"webonyx/graphql-php": "^15.0.3"
Expand All @@ -47,11 +47,11 @@
"fakerphp/faker": "^1.6",
"friendsofphp/php-cs-fixer": "^3",
"larastan/larastan": "^3",
"laravel/framework": "^10.0|^11.0|^12.0",
"laravel/framework": "^11.0|^12.0",
"mfn/php-cs-fixer-config": "^2",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^2",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^10.5.32 || ^11.0",
"thecodingmachine/phpstan-safe-rule": "^1"
},
Expand Down

0 comments on commit cef5b7e

Please sign in to comment.