Skip to content

Commit 657b393

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 97dd3d2 + 5247518 commit 657b393

File tree

4 files changed

+1086
-995
lines changed

4 files changed

+1086
-995
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
env:
3333
LARAVEL: 11.*
3434
TESTBENCH: 9.*
35+
- php: 8.4
36+
env:
37+
LARAVEL: 11.*
38+
TESTBENCH: 9.*
3539
env: ${{ matrix.env }}
3640
steps:
3741
- uses: actions/checkout@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "8.2.*|8.3.*",
15+
"php": "8.2.*|8.3.*|8.4.*",
1616
"code16/laravel-content-renderer": "^1.1.0",
1717
"intervention/image": "^3.4",
1818
"intervention/image-laravel": "^1.2",

demo/app/Sharp/Categories/CategoryForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function update($id, array $data)
4747
{
4848
$category = $id
4949
? Category::findOrFail($id)
50-
: new Category();
50+
: Category::make(['order' => 100]);
5151

5252
$this->save($category, $data);
5353

0 commit comments

Comments
 (0)