Skip to content

Commit ef48e6c

Browse files
authored
Merge pull request #14 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 9ecf54f + 4a6c93b commit ef48e6c

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

.github/workflows/run-tests.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,33 @@ name: run-tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
67
pull_request:
7-
branches: [main]
8+
branches:
9+
- main
810

911
jobs:
1012
test:
1113
runs-on: ${{ matrix.os }}
14+
1215
strategy:
1316
fail-fast: true
1417
matrix:
1518
os: [ubuntu-latest, windows-latest]
16-
php: [8.1, 8.0]
17-
laravel: [9.*]
19+
php: [8.0, 8.1, '8.2']
20+
laravel: ['9.*', '11.*']
1821
stability: [prefer-lowest, prefer-stable]
1922
include:
2023
- laravel: 9.*
2124
testbench: 7.*
25+
- laravel: 11.*
26+
testbench: 9.*
27+
exclude:
28+
- laravel: 11.*
29+
php: 8.0
30+
- laravel: 11.*
31+
php: 8.1
2232

2333
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2434

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"filament/filament":"^2.0|^3.0",
20+
"filament/filament": "^2.0|^3.0",
2121
"spatie/laravel-package-tools": "^1.9.2",
22-
"illuminate/contracts": "^8.6|^9.0|^10.0"
22+
"illuminate/contracts": "^8.6|^9.0|^10.0|^11.0"
2323
},
2424
"require-dev": {
25-
"nunomaduro/collision": "^6.0",
26-
"orchestra/testbench": "^7.0",
27-
"pestphp/pest": "^1.21",
28-
"pestphp/pest-plugin-laravel": "^1.1",
29-
"phpunit/phpunit": "^9.5",
25+
"nunomaduro/collision": "^6.0|^8.0",
26+
"orchestra/testbench": "^7.0|^9.0",
27+
"pestphp/pest": "^1.21|^2.34",
28+
"pestphp/pest-plugin-laravel": "^1.1|^2.3",
29+
"phpunit/phpunit": "^9.5|^10.5",
3030
"spatie/laravel-ray": "^1.26"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)