Skip to content

Commit 4fe5633

Browse files
Merge pull request #103 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 717e024 + a955cc2 commit 4fe5633

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: test
22

3-
on: [push]
3+
on:
4+
- push
45

56
jobs:
67
test:
@@ -10,12 +11,17 @@ jobs:
1011
fail-fast: true
1112
matrix:
1213
os: [ubuntu-latest]
13-
php: [8.1]
14-
laravel: [10.*]
14+
php: [8.1, '8.2']
15+
laravel: ['10.*', '11.*']
1516
stability: [prefer-lowest, prefer-stable]
1617
include:
1718
- laravel: 10.*
1819
testbench: 8.*
20+
- laravel: 11.*
21+
testbench: 9.*
22+
exclude:
23+
- laravel: 11.*
24+
php: 8.1
1925

2026
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2127

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
],
1414
"require": {
1515
"php": "^8.1",
16-
"abraham/twitteroauth": "^5.0",
17-
"illuminate/notifications": "^10.0",
18-
"illuminate/support": "^10.0",
16+
"abraham/twitteroauth": "^5.0|^7.0",
17+
"illuminate/notifications": "^10.0|^11.0",
18+
"illuminate/support": "^10.0|^11.0",
1919
"kylewm/brevity": "^0.2.9",
2020
"ext-fileinfo": "*"
2121
},
2222
"require-dev": {
2323
"laravel/pint": "^1.10",
2424
"mockery/mockery": "^1.3.1",
25-
"orchestra/testbench": "^8.0",
26-
"phpunit/phpunit": "^9.3"
25+
"orchestra/testbench": "^8.0|^9.0",
26+
"phpunit/phpunit": "^9.3|^10.5"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)