Skip to content

Commit f16ee54

Browse files
committed
fix: add laravel 12.x compatibility
1 parent f7a3f9d commit f16ee54

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: ['8.1', '8.2', '8.3']
17-
stability: ['prefer-lowest', 'prefer-stable']
18-
laravel: ['^10.0', '^11.0']
16+
php: ['8.1', '8.2', '8.3', '8.4']
17+
stability: [prefer-lowest, prefer-stable]
18+
laravel: ['^10.0', '^11.0', ^12.0]
1919
exclude:
2020
- php: '8.1'
21-
laravel: '^11.0'
21+
laravel: ^11.0
22+
- laravel: '12.0'
23+
php: '8.1'
2224

23-
name: 'PHP ${{ matrix.php }} - Laravel: ${{matrix.laravel}} - ${{ matrix.stability }}'
25+
name: PHP ${{ matrix.php }} - Laravel: ${{matrix.laravel}} - ${{ matrix.stability }}
2426

2527
steps:
2628
- name: Checkout code

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"require": {
1212
"php": "^8.0",
1313
"ext-json": "*",
14-
"illuminate/queue": "^10.0|^11.0",
14+
"illuminate/queue": "^10.0|^11.0|^12.0",
1515
"php-amqplib/php-amqplib": "^v3.6"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^10.0|^11.0",
1919
"mockery/mockery": "^1.0",
2020
"laravel/horizon": "^5.0",
21-
"orchestra/testbench": "^7.0|^8.0|^9.0",
21+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
2222
"laravel/pint": "^1.2",
23-
"laravel/framework": "^9.0|^10.0|^11.0"
23+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)