smorken / errors
Extended error handling for Laravel
v11.1.8
2024-07-29 17:36 UTC
Requires
- php: ^8.2
- aws/aws-sdk-php: ~3.0
- smorken/support: ^10.0
- symfony/monolog-bridge: ^7.0
Requires (Dev)
- guzzlehttp/guzzle: ^7.8.0
- larastan/larastan: ^v2.9.8
- mockery/mockery: ^1.0
- orchestra/testbench: ^9.0
- phpunit/phpunit: ^11.0
- smorken/docker: *
- spatie/laravel-ignition: ^2.1.3
- dev-master / 11.x-dev
- v11.1.8
- v11.1.7
- v11.1.6
- v11.1.5
- v11.1.4
- v11.1.3
- v11.1.2
- v11.1.1
- v11.1.0
- v11.0.0
- 10.x-dev
- v10.1.0
- v10.0.0
- 9.x-dev
- v9.0.5
- v9.0.4
- v9.0.3
- v9.0.2
- v9.0.1
- v9.0
- 8.x-dev
- v8.0
- 7.x-dev
- v7.0
- v6.4.2
- v6.4.1
- v6.4
- v6.3
- v6.2.1
- v6.2.0
- v6.1.0
- v6.0
- v5.5.6
- v5.5.5
- v5.5.4
- v5.5.3
- v5.5.2
- v5.5.1
- v5.5.0-beta7
- v5.5.0-beta6
- v5.5.0-beta4
- v5.5.0-beta3
- v5.5.0-beta2
- v5.5.0-beta1
- 5.4.x-dev
- 5.1.x-dev
- v5.0.18
- v5.0.17
- v5.0.16
- v5.0.15
- v5.0.14
- v5.0.13
- v5.0.12
- v5.0.11
- v5.0.10
- v5.0.9
- v5.0.8p2
- v5.0.8p1
- v5.0.8
- v5.0.7
- v5.0.6
- v5.0.5p2
- v5.0.5p1
- v5.0.5
- v5.0.3
- v5.0.2
- v5.0.1p2
- v5.0.1p1
- v5.0.1
- v5.0.0p1
- v5.0.0
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-6.x-dev
- dev-dev-5.5
- dev-laravel5
This package is auto-updated.
Last update: 2024-10-29 18:09:36 UTC
README
License
This software is open-sourced software licensed under the MIT license
The Laravel framework is open-sourced software licensed under the MIT license
Installation
Add as the first service provider to your config/app.php
...
'providers' => [
Smorken\Errors\ErrorServiceProvider::class,
...
Publish the files
php artisan vendor:publish --provider="Smorken\Errors\ErrorServiceProvider"
This will provide a resource/views/errors
directory and config/errors.php
Modify any of the settings you wish (email to address, layout/master view)
The view files expect a variable called $master
to be available with the name of the master view to extend.
(eg, view()->share('master', 'layouts.master')
)