patrickrose / whoops-configurator
Provides a sensible way to configure Whoops in Laravel
Installs: 1 997
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.0
- illuminate/exception: 4.1.*
README
Whoops is pretty damn awesome. Laravel is pretty damn awesome and includes Whoops. Changing the configuration for Whoops is not.
Installing
Add the following to your composer.json (Put it in the require-dev block since you aren't showing debug messages in production...right?):
"require-dev": { ..., "patrickrose/whoops-configurator": "1.*" }
Then run composer update
and watch as pretty much nothing happens
Then load the service provider in your app.php file
(I'd recommend against loading it in production - you can cascade so everything doesn't break by using the append_config()
function)
"PatrickRose\WhoopsConfigurator\WhoopsConfiguratorServiceProvider"
Finally, publish the config file:
php artisan config:publish patrickrose/whoops-configurator
Then you're all done!
Config Options
Currently, there are two options: editor
and title
. They're mostly self explanatory.
Editors
Whoops comes with support for four editors (I may add support for other editors later). To use one, just set the editor
value to one of the following:
- sublime - Sublime Text 2
- emacs - Emacs
- textmate - Textmate
- macvim - MacVim
If you wish to provide your own support, you may instead pass a closure. See Whoops' Docs for more info on that.
Title
Self explanatory. If you want to insult yourself, make a geeky joke or whatever then change the title
value to whatever you like.
License
This is licensed under the MIT license