Skip to content

Commit 649b423

Browse files
committed
remove laravel 10 support
1 parent b49255b commit 649b423

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [ 8.1, 8.2, 8.3, 8.4 ]
16-
laravel: [ ^10.0, ^11.0, ^12.0 ]
17-
exclude:
18-
- php: 8.4
19-
laravel: ^10.0
20-
- php: 8.1
21-
laravel: ^11.0
22-
- php: 8.1
23-
laravel: ^12.0
15+
php: [ 8.2, 8.3, 8.4 ]
16+
laravel: [^11.0, ^12.0 ]
2417
name: PHP=${{ matrix.php }} LARAVEL=${{ matrix.laravel }}
2518
runs-on: ubuntu-latest
2619
env:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ This package helps you to test your GraphQL queries & mutations in your TestCase
44
It works with any laravel GraphQL server.
55

66
## Requirements
7-
- Laravel 10.0, 11.0, 12.0
8-
- PHP 8.1+
7+
- Laravel 11.0, 12.0
8+
- PHP 8.2+
99

10-
For Laravel 8 and 9 and PHP 8.0 see 1.x branch.
10+
For Laravel 8, 9, 10 and PHP 8.0+ see 1.x branch.
1111

1212
## Installation
1313
Require the package via Composer:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
],
2020
"require": {
2121
"php": "^8.1",
22-
"illuminate/contracts": "^10.0|^11.0|^12.0",
23-
"illuminate/support": "^10.0|^11.0|^12.0",
24-
"illuminate/testing": "^10.0|^11.0|^12.0"
22+
"illuminate/contracts": "^11.0|^12.0",
23+
"illuminate/support": "^11.0|^12.0",
24+
"illuminate/testing": "^11.0|^12.0"
2525
},
2626
"require-dev": {
2727
"larastan/larastan": "^2.4|^3.0",
2828
"laravel/pint": "^1.16",
29-
"orchestra/testbench": "^8.0|^9.0|^10.0",
29+
"orchestra/testbench": "^9.0|^10.0",
3030
"phpunit/phpunit": "^10.0|^11.5"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)