Skip to content

Commit 4569046

Browse files
Merge pull request #111 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents dd26869 + e29dd88 commit 4569046

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,20 @@ jobs:
1212
matrix:
1313
os: [ubuntu-latest]
1414
php: [8.1, '8.2']
15-
laravel: ['10.*', '11.*']
15+
laravel: ['10.*', '11.*', '12.*']
1616
stability: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: 8.*
2020
- laravel: 11.*
2121
testbench: 9.*
22+
- laravel: 12.*
23+
testbench: 10.*
2224
exclude:
2325
- laravel: 11.*
2426
php: 8.1
27+
- laravel: 12.*
28+
php: 8.1
2529

2630
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2731

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|^6.0",
17-
"illuminate/notifications": "^10.0|^11.0",
18-
"illuminate/support": "^10.0|^11.0",
16+
"abraham/twitteroauth": "^5.0|^6.0|^7.0",
17+
"illuminate/notifications": "^10.0|^11.0|^12.0",
18+
"illuminate/support": "^10.0|^11.0|^12.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|^9.0",
26-
"phpunit/phpunit": "^9.3|^10.5"
25+
"orchestra/testbench": "^8.0|^9.0|^10.0",
26+
"phpunit/phpunit": "^9.3|^10.5|^11.5.3"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)