Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

❗BREAKING CHANGE❗️Remove support for Laravel 6 #967

Merged
merged 1 commit into from
Mar 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,10 @@ jobs:
fail-fast: false
matrix:
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
laravel: [^6.0, ^8.0, ^9.0]
laravel: [^8.0, ^9.0]
exclude:
- php: 7.4
laravel: ^9.0
- php: 8.0
laravel: ^6.0
- php: 8.1
laravel: ^6.0
- php: 8.2
laravel: ^6.0
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
runs-on: ubuntu-latest
env:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,11 @@ jobs:
fail-fast: false
matrix:
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
laravel: [^6.0, ^8.0, ^9.0]
laravel: [^8.0, ^9.0]
lazy_types: ['false', 'true']
exclude:
- php: 7.4
laravel: ^9.0
- php: 8.0
laravel: ^6.0
- php: 8.1
laravel: ^6.0
- php: 8.2
laravel: ^6.0
name: P=${{ matrix.php }} L=${{ matrix.laravel }} Lazy types=${{ matrix.lazy_types }}
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 @@ -4,6 +4,9 @@ CHANGELOG
[Next release](https://github.com/rebing/graphql-laravel/compare/8.5.0...master)
--------------

### Removed
- Laravel 6 is no longer supported [\#967 / mfn](https://github.com/rebing/graphql-laravel/pull/967)

2023-01-13, 8.5.0
-----------------
### Added
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 7.4+ on Laravel 6.0 & 8.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 7.4+ on Laravel 8.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
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"require": {
"php": ">= 7.4",
"ext-json": "*",
"illuminate/contracts": "^6.0|^8.0|^9.0",
"illuminate/support": "^6.0|^8.0|^9.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"laragraph/utils": "^1",
"thecodingmachine/safe": "^1.1|^2.4",
"webonyx/graphql-php": "^14.6.4"
Expand All @@ -49,9 +49,9 @@
"mfn/php-cs-fixer-config": "^2",
"mockery/mockery": "^1.2",
"nunomaduro/larastan": "1.0.3",
"orchestra/testbench": "4.0.*|5.0.*|^6.0|^7.0",
"orchestra/testbench": "^6.0|^7.0",
"phpstan/phpstan": "1.8.4",
"phpunit/phpunit": "~7.0|~8.0|^9",
"phpunit/phpunit": "~8.0|^9",
"thecodingmachine/phpstan-safe-rule": "^1"
},
"autoload": {
Expand Down