log0 / php-client
Log PHP Exception
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/log0/php-client
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-12-07 02:43:37 UTC
README
#About Client library to catch error and exception.
#How to install?
- composer require log0/php-client
- composer require log0/php-client "@dev"
Core PHP Usage
To use this library with code php code, make following configurations:
require_once 'vendor/autoload.php'; use Log0\Exceptioner\Core\Handler; Handler::init();
CakePHP 3 Usage
To use this library with CakePHP 3, make following configurations:
#boostrap.php use Log0\Exceptioner\Cake3\Error as Log0Error; Configure::write('Error.exceptionRenderer', 'Log0\Exceptioner\Cake3\Renderer'); (new Log0Error(Configure::read('Error')))->register();