Skip to content

Commit

Permalink
Remove support for Laravel 6
Browse files Browse the repository at this point in the history
  • Loading branch information
mfn committed Jan 7, 2023
1 parent 59251b2 commit f5b0288
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 19 deletions.
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.4.0...master)
--------------

### Removed
- Laravel 6 is no longer support [\# / mfn]()

2023-01-06, 8.4.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.3",
"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

0 comments on commit f5b0288

Please sign in to comment.