Skip to content

Commit 966eec1

Browse files
committed
chore(deps): add support for Laravel 13
1 parent 1a5b450 commit 966eec1

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.github/workflows/npm-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,4 @@ jobs:
2828
uses: stefanzweifel/git-auto-commit-action@v7
2929
with:
3030
branch: 3.x
31-
commit_message: >
32-
chore: build assets
31+
commit_message: "chore: build assets"

.github/workflows/tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
os: [ubuntu-latest]
13-
php: [8.3, 8.4]
14-
laravel: [12.*, 11.*]
13+
php: [8.3, 8.4, 8.5]
14+
laravel: [12.*, 11.*, 13.*]
1515
dependency-version: [prefer-stable]
1616
include:
17-
- laravel: 12.*
18-
testbench: 10.*
1917
- laravel: 11.*
2018
testbench: 9.*
19+
- laravel: 12.*
20+
testbench: 10.*
21+
- laravel: 13.*
22+
testbench: 11.*
2123
name: PHP${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
2224
steps:
2325
- name: Checkout

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
],
2121
"require": {
2222
"php": "^8.3",
23-
"illuminate/contracts": "^11.0|^12.0",
24-
"illuminate/session": "^11.0|^12.0",
25-
"illuminate/support": "^11.0|^12.0",
26-
"mckenziearts/blade-untitledui-icons": "v1.4.0"
23+
"illuminate/contracts": "^11.0|^12.0|^13.0",
24+
"illuminate/session": "^11.0|^12.0|^13.0",
25+
"illuminate/support": "^11.0|^12.0|^13.0",
26+
"mckenziearts/blade-untitledui-icons": "v1.5.0"
2727
},
2828
"require-dev": {
2929
"laravel/pint": "^1.25.0",
3030
"mockery/mockery": "^1.6",
31-
"orchestra/testbench": "^10.6.0",
32-
"pestphp/pest": "^3.8.4",
33-
"pestphp/pest-plugin-type-coverage": "^3.6.1",
31+
"orchestra/testbench": "^10.6.0|^11.0",
32+
"pestphp/pest": "^3.8.4|^4.4",
33+
"pestphp/pest-plugin-type-coverage": "^3.6.1|^4.0",
3434
"phpstan/phpstan": "^2.1.27",
3535
"rector/rector": "^2.1.7"
3636
},

0 commit comments

Comments
 (0)