Skip to content

Commit f0c0922

Browse files
committed
Remove support for PHP 7.2, PHP 7.3 and Laravel 7.0
All EOL
1 parent dbda3f8 commit f0c0922

File tree

5 files changed

+11
-24
lines changed

5 files changed

+11
-24
lines changed

.github/workflows/integration_tests.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,15 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
php: [7.2, 7.3, 7.4, 8.0, 8.1]
25-
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
24+
php: [7.4, 8.0, 8.1]
25+
laravel: [^6.0, ^8.0, ^9.0]
2626
exclude:
27-
- php: 7.2
28-
laravel: ^8.0
29-
- php: 7.2
30-
laravel: ^9.0
31-
- php: 7.3
32-
laravel: ^9.0
3327
- php: 7.4
3428
laravel: ^9.0
3529
- php: 8.0
3630
laravel: ^6.0
3731
- php: 8.1
3832
laravel: ^6.0
39-
- php: 8.1
40-
laravel: ^7.0
4133
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
4234
runs-on: ubuntu-latest
4335
env:

.github/workflows/tests.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,16 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
php: [7.2, 7.3, 7.4, 8.0, 8.1]
25-
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
24+
php: [7.4, 8.0, 8.1]
25+
laravel: [^6.0, ^8.0, ^9.0]
2626
lazy_types: ['false', 'true']
2727
exclude:
28-
- php: 7.2
29-
laravel: ^8.0
30-
- php: 7.2
31-
laravel: ^9.0
32-
- php: 7.3
33-
laravel: ^9.0
3428
- php: 7.4
3529
laravel: ^9.0
3630
- php: 8.0
3731
laravel: ^6.0
3832
- php: 8.1
3933
laravel: ^6.0
40-
- php: 8.1
41-
laravel: ^7.0
4234
name: P=${{ matrix.php }} L=${{ matrix.laravel }} Lazy types=${{ matrix.lazy_types }}
4335
runs-on: ubuntu-latest
4436
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.2.1...master)
55
--------------
66

7+
### Removed
8+
- Support for PHP 7.2, PHP 7.3 and Laravel 7.0 (all EOL) [\#914 / mfn](https://github.com/rebing/graphql-laravel/pull/914)
9+
710
2022-01-30, 8.2.1
811
-----------------
912
### Fixed

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 Laravel 6.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 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/).
1010

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

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"license": "MIT",
3535
"type": "library",
3636
"require": {
37-
"php": ">= 7.2",
37+
"php": ">= 7.4",
3838
"ext-json": "*",
39-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
40-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
39+
"illuminate/contracts": "^6.0|^8.0|^9.0",
40+
"illuminate/support": "^6.0|^8.0|^9.0",
4141
"laragraph/utils": "^1",
4242
"thecodingmachine/safe": "^1.3",
4343
"webonyx/graphql-php": "^14.6.4"

0 commit comments

Comments
 (0)