marcolamr / whoops
Simple abstration to Whoops PHP
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/marcolamr/whoops
Requires
- php: >=8.1
- filp/whoops: ^2.14
README
Basic abstraction from filp/whoops
Abstração básica do filp/whoops
Highlights
- Simple installation (Instalação simples)
Installation
Whoops is available via Composer:
"marcolamr/whoops": "^1.0"
or run
composer require marcolamr/whoops
Documentation
How to use:
<?php use MarcolaMr\Whoops\ErrorHandler; require __DIR__ . "/vendor/autoload.php"; new ErrorHandler(); throw new Exception("Test Exception");