Skip to content

Commit

Permalink
Remove support for Laravel 9
Browse files Browse the repository at this point in the history
- EOL was on 2024-02-06
- Minimum PHP version for Laravel 10 version is 8.1
  • Loading branch information
mfn committed Feb 18, 2024
1 parent 170f0d1 commit df581d1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [^9.0, ^10.0, ^11.x-dev]
php: [8.1, 8.2, 8.3]
laravel: [^10.0, ^11.x-dev]
exclude:
- php: 8.0
laravel: ^10.0
- php: 8.0
laravel: ^11.x-dev
- php: 8.1
laravel: ^11.x-dev
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [^9.0, ^10.0, ^11.0]
php: [8.1, 8.2, 8.3]
laravel: [^10.0, ^11.0]
stability: [prefer-lowest, prefer-stable]
exclude:
- php: 8.0
laravel: ^10.0
- php: 8.0
laravel: ^11.0
- php: 8.1
laravel: ^11.0
name: P=${{ matrix.php }} L=${{ matrix.laravel }} ${{ matrix.stability }}
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ CHANGELOG
[Next release](https://github.com/rebing/graphql-laravel/compare/9.2.0...master)
--------------

## Removed
- Support for Laravel 9 & PHP 8.0 have been removed [\# / ]()

2024-02-18, 9.2.0
-----------------

Expand Down
8 changes: 4 additions & 4 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.0",
"php": "^8.1",
"ext-json": "*",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"laragraph/utils": "^2.0.1",
"thecodingmachine/safe": "^2.4",
"webonyx/graphql-php": "^15.0.3"
Expand All @@ -49,7 +49,7 @@
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^1",
"larastan/larastan": "^2",
"orchestra/testbench": "^7.0|^8.0|^9.0|^9.x-dev",
"orchestra/testbench": "^8.0|^9.0|^9.x-dev",
"phpunit/phpunit": "^9|^10",
"thecodingmachine/phpstan-safe-rule": "^1"
},
Expand Down

0 comments on commit df581d1

Please sign in to comment.