Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/Traits/WithCustomLivewireException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ trait WithCustomLivewireException
{
public function exception($e, $stopPropagation)
{
if (config('app.env') === 'local' || config('app.debug')) {
throw $e; // @phpstan-ignore-line
}

if ($e instanceof HttpException) {
return;
}
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://getcomposer.org/schema.json",
"name": "cyanfox/base",
"type": "project",
"description": "A modular extendable Base System based on Laravel 11",
"description": "A modular extendable Base System based on Laravel 12",
"keywords": [
"laravel",
"cyanfox",
Expand All @@ -18,6 +18,7 @@
"laravel/reverb": "^1.0",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.5",
"lorisleiva/laravel-actions": "^2.9",
"mhmiton/laravel-modules-livewire": "^5.0",
"nunomaduro/essentials": "^0.1",
"nwidart/laravel-modules": "^12.0",
Expand Down
150 changes: 149 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"base": "4.1.3",
"base": "4.2.0",
"dev": false
}