ikkez / f3-falsum
Pretty error handling for Fat-Free Framework
Installs: 105 068
Dependents: 3
Suggesters: 0
Security: 0
Stars: 20
Watchers: 2
Forks: 4
Open Issues: 3
Requires
- php: >=5.5.9
Suggests
- symfony/var-dumper: Pretty print complex values better with var-dumper available
This package is auto-updated.
Last update: 2024-11-07 02:46:55 UTC
README
Pretty error handling for Fat-Free Framework
Instalation
To install it on you web app, just run the following command in you Terminal at your root directory:
composer require ikkez/f3-falsum
Next, on your bootstrap file (usually index.php
) add the following line:
Falsum\Run::handler();
By default Falsum will only run when the DEBUG
variable from the hive is set to 3. If you want to override this to show in any DEBUG
status, send true as parameter on handler()
.
Falsum\Run::handler(true);