Skip to content

Commit d1f4c6a

Browse files
committed
Remove support for Laravel 6
1 parent 2db6692 commit d1f4c6a

File tree

5 files changed

+10
-19
lines changed

5 files changed

+10
-19
lines changed

.github/workflows/integration_tests.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,10 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
37-
laravel: [^6.0, ^8.0, ^9.0]
37+
laravel: [^8.0, ^9.0]
3838
exclude:
3939
- php: 7.4
4040
laravel: ^9.0
41-
- php: 8.0
42-
laravel: ^6.0
43-
- php: 8.1
44-
laravel: ^6.0
45-
- php: 8.2
46-
laravel: ^6.0
4741
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
4842
runs-on: ubuntu-latest
4943
env:

.github/workflows/tests.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,11 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
37-
laravel: [^6.0, ^8.0, ^9.0]
37+
laravel: [^8.0, ^9.0]
3838
lazy_types: ['false', 'true']
3939
exclude:
4040
- php: 7.4
4141
laravel: ^9.0
42-
- php: 8.0
43-
laravel: ^6.0
44-
- php: 8.1
45-
laravel: ^6.0
46-
- php: 8.2
47-
laravel: ^6.0
4842
name: P=${{ matrix.php }} L=${{ matrix.laravel }} Lazy types=${{ matrix.lazy_types }}
4943
runs-on: ubuntu-latest
5044
env:

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ CHANGELOG
44
[Next release](https://github.com/rebing/graphql-laravel/compare/8.5.0...master)
55
--------------
66

7+
### Removed
8+
- Laravel 6 is no longer support [\#967 / mfn](https://github.com/rebing/graphql-laravel/pull/967)
9+
710
2023-01-13, 8.5.0
811
-----------------
912
### Added

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Downloads](https://img.shields.io/packagist/dt/rebing/graphql-laravel.svg?style=flat-square)](https://packagist.org/packages/rebing/graphql-laravel)
77
[![Get on Slack](https://img.shields.io/badge/slack-join-orange.svg)](https://join.slack.com/t/rebing-graphql/shared_invite/enQtNTE5NjQzNDI5MzQ4LTdhNjk0ZGY1N2U1YjE4MGVlYmM2YTc2YjQ0MmIwODY5MWMwZWIwYmY1MWY4NTZjY2Q5MzdmM2Q3NTEyNDYzZjc)
88

9-
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/).
9+
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/).
1010

1111
* Allows creating **queries** and **mutations** as request endpoints
1212
* Supports multiple schemas

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"require": {
3737
"php": ">= 7.4",
3838
"ext-json": "*",
39-
"illuminate/contracts": "^6.0|^8.0|^9.0",
40-
"illuminate/support": "^6.0|^8.0|^9.0",
39+
"illuminate/contracts": "^8.0|^9.0",
40+
"illuminate/support": "^8.0|^9.0",
4141
"laragraph/utils": "^1",
4242
"thecodingmachine/safe": "^1.1|^2.4",
4343
"webonyx/graphql-php": "^14.6.4"
@@ -49,9 +49,9 @@
4949
"mfn/php-cs-fixer-config": "^2",
5050
"mockery/mockery": "^1.2",
5151
"nunomaduro/larastan": "1.0.3",
52-
"orchestra/testbench": "4.0.*|5.0.*|^6.0|^7.0",
52+
"orchestra/testbench": "^6.0|^7.0",
5353
"phpstan/phpstan": "1.8.4",
54-
"phpunit/phpunit": "~7.0|~8.0|^9",
54+
"phpunit/phpunit": "~8.0|^9",
5555
"thecodingmachine/phpstan-safe-rule": "^1"
5656
},
5757
"autoload": {

0 commit comments

Comments
 (0)