Skip to content

Commit f756c80

Browse files
authored
Laravel v10 Support (#35)
* Update composer.json * Update tests.yml
1 parent cc91963 commit f756c80

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: ['8.0', 8.1, 8.2]
20-
laravel: [9]
20+
laravel: [9, 10]
21+
exclude:
22+
- php: '8.0'
23+
laravel: 10
2124

2225
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2326

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"require": {
1414
"php": "^8.0",
1515
"blade-ui-kit/blade-icons": "^1.1",
16-
"illuminate/support": "^9.0"
16+
"illuminate/support": "^9.0|^10.0"
1717
},
1818
"require-dev": {
19-
"orchestra/testbench": "^7.0",
19+
"orchestra/testbench": "^7.0|^8.0",
2020
"phpunit/phpunit": "^9.0"
2121
},
2222
"autoload": {

0 commit comments

Comments
 (0)