Skip to content

Commit

Permalink
Merge pull request #1123 from rebing/mfn-drop-laravel-9
Browse files Browse the repository at this point in the history
Remove support for Laravel 9
  • Loading branch information
mfn committed Feb 18, 2024
2 parents 170f0d1 + 1d285ce commit 92a84c2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 18 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 [\#1123 / mfn](https://github.com/rebing/graphql-laravel/pull/1123)

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Downloads](https://img.shields.io/packagist/dt/rebing/graphql-laravel.svg?style=flat-square)](https://packagist.org/packages/rebing/graphql-laravel)
[![Get on Slack](https://img.shields.io/badge/slack-join-orange.svg)](https://join.slack.com/t/rebing-graphql/shared_invite/enQtNTE5NjQzNDI5MzQ4LTdhNjk0ZGY1N2U1YjE4MGVlYmM2YTc2YjQ0MmIwODY5MWMwZWIwYmY1MWY4NTZjY2Q5MzdmM2Q3NTEyNDYzZjc)

Use Facebook's GraphQL with PHP 8.0+ on Laravel 9.0+. It is based on the [PHP port of GraphQL reference implementation](https://github.com/webonyx/graphql-php). You can find more information about GraphQL in the [GraphQL Introduction](https://reactjs.org/blog/2015/05/01/graphql-introduction.html) on the [React](https://reactjs.org/) blog or you can read the [GraphQL specifications](https://spec.graphql.org/).
Use Facebook's GraphQL with PHP 8.1+ on Laravel 10.0+. It is based on the [PHP port of GraphQL reference implementation](https://github.com/webonyx/graphql-php). You can find more information about GraphQL in the [GraphQL Introduction](https://reactjs.org/blog/2015/05/01/graphql-introduction.html) on the [React](https://reactjs.org/) blog or you can read the [GraphQL specifications](https://spec.graphql.org/).

* Allows creating **queries** and **mutations** as request endpoints
* Supports multiple schemas
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.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,8 +49,8 @@
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^1",
"larastan/larastan": "^2",
"orchestra/testbench": "^7.0|^8.0|^9.0|^9.x-dev",
"phpunit/phpunit": "^9|^10",
"orchestra/testbench": "^8.0|^9.0|^9.x-dev",
"phpunit/phpunit": "^10.5",
"thecodingmachine/phpstan-safe-rule": "^1"
},
"autoload": {
Expand Down

0 comments on commit 92a84c2

Please sign in to comment.