Skip to content

Commit 5819ca5

Browse files
committed
fix(deps): ensure compatibility with Laravel 11 and 12
- Add Laravel 11 support in composer.json for illuminate/support dependency - Fix missing newline at end of LogViewerTest.php file
1 parent 5b5ae78 commit 5819ca5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"php": ">=8.2",
1818
"ext-curl": "*",
1919
"creativeorange/gravatar": "^1.0",
20-
"illuminate/support": "^12.0",
20+
"illuminate/support": "^11.0|^12.0",
2121
"intervention/image-laravel": "^1.2",
2222
"laravel/ui": "^4.0",
2323
"lavary/laravel-menu": "^1.8",

tests/Controllers/Auth/LogViewerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ public function testLogViewerAsUserWithPermission()
4242
$resource = $this->actingAs($user)->get('admin/logs');
4343
$resource->assertStatus(200);
4444
}
45-
}
45+
}

0 commit comments

Comments
 (0)