Skip to content

Commit f8e180f

Browse files
Laravel 12.x Compatibility (#14)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 0dc66a1 commit f8e180f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
php: [8.4, 8.3, 8.2]
15-
laravel: ["10.*", "11.*"]
15+
laravel: ['10.*', '11.*', '12.*']
1616
db: [mysql, postgres, sqlite]
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
include:
1919
- laravel: 10.*
2020
testbench: 8.*
2121
- laravel: 11.*
2222
testbench: 9.*
23+
- laravel: 12.*
24+
testbench: 10.*
2325

2426
name: P${{ matrix.php }} - L${{ matrix.laravel }} - DB ${{ matrix.db }} - ${{ matrix.dependency-version }}
2527

@@ -91,4 +93,4 @@ jobs:
9193
if: "${{ matrix.db == 'sqlite' }}"
9294
env:
9395
DB_CONNECTION: sqlite
94-
DB_DATABASE: ":memory:"
96+
DB_DATABASE: :memory:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "^8.2|^8.3|^8.4",
20-
"illuminate/support": "^10.0|^11.0"
20+
"illuminate/support": "^10.0|^11.0|^12.0"
2121
},
2222
"require-dev": {
2323
"mockery/mockery": "^1.4.4",
24-
"orchestra/testbench": "^8.0|^9.0",
25-
"phpunit/phpunit": "^10.4"
24+
"orchestra/testbench": "^8.0|^9.0|^10.0",
25+
"phpunit/phpunit": "^10.4|^11.5.3"
2626
},
2727
"autoload": {
2828
"psr-4": {
@@ -43,4 +43,4 @@
4343
},
4444
"minimum-stability": "dev",
4545
"prefer-stable": true
46-
}
46+
}

0 commit comments

Comments
 (0)