Skip to content

Commit 5dcfe14

Browse files
Laravel 12.x Compatibility (#128)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent c21ae0c commit 5dcfe14

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [ 8.4, 8.3, 8.2 ]
20-
laravel: [ 11.*, 10.* ]
21-
stability: [ prefer-lowest, prefer-stable ]
19+
php: [8.4, 8.3, 8.2]
20+
laravel: ['10.*', '11.*', '12.*']
21+
stability: [prefer-lowest, prefer-stable]
2222
include:
2323
- laravel: 11.*
2424
testbench: 9.*
2525
- laravel: 10.*
2626
testbench: 8.*
27+
- laravel: 12.*
28+
testbench: 10.*
2729

2830
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2931

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
],
2727
"require": {
2828
"php": "^8.2|^8.3|^8.4",
29-
"xeroapi/xero-php-oauth2": "^7.1",
30-
"laravel/framework": "^10.0|^11.0"
29+
"xeroapi/xero-php-oauth2": "^7.1|^8.0",
30+
"laravel/framework": "^10.0|^11.0|^12.0"
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "^8.0|^9.0",
33+
"orchestra/testbench": "^8.0|^9.0|^10.0",
3434
"phpunit/phpunit": "^10.5|^11.0",
3535
"symfony/var-dumper": "^6.2|^7.0"
3636
},

0 commit comments

Comments
 (0)