Skip to content

Commit e8adc82

Browse files
authored
Merge pull request #7 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 5e6c4a2 + 99efe1a commit e8adc82

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
name: run-tests
22

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

57
jobs:
68
test:
79
runs-on: ${{ matrix.os }}
10+
811
strategy:
912
fail-fast: true
1013
matrix:
1114
os: [ubuntu-latest, windows-latest]
12-
php: [7.4, 8.0]
15+
php: [7.4, 8.0, '8.2']
1316
stability: [prefer-lowest, prefer-stable]
1417

1518
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"require": {
55
"php": "^7.4|^8.0",
66
"guzzlehttp/guzzle": "^6.0|^7.0",
7-
"illuminate/http": "^7.0|^8.0|^9.0|^10.0",
8-
"illuminate/view": "^7.0|^8.0|^9.0|^10.0",
7+
"illuminate/http": "^7.0|^8.0|^9.0|^10.0|^11.0",
8+
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0",
99
"spatie/laravel-package-tools": "^1.5"
1010
},
1111
"require-dev": {
12-
"phpunit/phpunit": "^9"
12+
"phpunit/phpunit": "^9|^10.5"
1313
},
1414
"license": "MIT",
1515
"keywords": [

0 commit comments

Comments
 (0)