Skip to content

Commit 69bc09c

Browse files
authored
Merge pull request #164 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 595fa17 + fc8a03f commit 69bc09c

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

.github/workflows/run-tests.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,29 @@
11
name: run-tests
22

3-
on: [push, pull_request]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
test:
7-
89
runs-on: ubuntu-latest
10+
911
strategy:
1012
fail-fast: true
1113
matrix:
1214
php: [8.2, 8.1]
13-
laravel: [10.*, 9.*]
15+
laravel: ['9.*', '10.*', '11.*']
1416
dependency-version: [prefer-lowest, prefer-stable]
1517
include:
1618
- laravel: 10.*
1719
testbench: 8.*
1820
- laravel: 9.*
1921
testbench: 7.*
22+
- laravel: 11.*
23+
testbench: 9.*
24+
exclude:
25+
- laravel: 11.*
26+
php: 8.1
2027

2128
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2229

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
"require": {
1919
"php": "^8.1",
2020
"openspout/openspout": "^4.19",
21-
"illuminate/support": "^9.0|^10.0"
21+
"illuminate/support": "^9.0|^10.0|^11.0"
2222
},
2323
"require-dev": {
24-
"pestphp/pest-plugin-laravel": "^1.3",
25-
"phpunit/phpunit": "^9.4",
26-
"spatie/pest-plugin-snapshots": "^1.1",
27-
"spatie/phpunit-snapshot-assertions": "^4.0",
28-
"spatie/temporary-directory": "^1.2"
24+
"pestphp/pest-plugin-laravel": "^1.3|^2.3",
25+
"phpunit/phpunit": "^9.4|^10.5",
26+
"spatie/pest-plugin-snapshots": "^1.1|^2.1",
27+
"spatie/phpunit-snapshot-assertions": "^4.0|^5.1",
28+
"spatie/temporary-directory": "^1.2|^2.2"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)