├── .editorconfig ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composer.json ├── example.php ├── phpunit.xml.dist ├── src ├── Cake │ ├── ConsoleErrorHandler.php │ └── ErrorHandler.php ├── Exception │ ├── FatalErrorException.php │ └── PHP7ErrorException.php ├── Handler.php ├── Handler │ ├── AbstractHandler.php │ ├── AirbrakeHandler.php │ ├── AtatusHandler.php │ ├── BugsnagHandler.php │ ├── HandlerInterface.php │ ├── MonologStreamHandler.php │ ├── NewrelicHandler.php │ ├── RaygunHandler.php │ └── SentryHandler.php └── Utility │ └── ConfigTrait.php └── tests └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | tmp/ 4 | build/ 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/example.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Cake/ConsoleErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Cake/ConsoleErrorHandler.php -------------------------------------------------------------------------------- /src/Cake/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Cake/ErrorHandler.php -------------------------------------------------------------------------------- /src/Exception/FatalErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Exception/FatalErrorException.php -------------------------------------------------------------------------------- /src/Exception/PHP7ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Exception/PHP7ErrorException.php -------------------------------------------------------------------------------- /src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler.php -------------------------------------------------------------------------------- /src/Handler/AbstractHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/AbstractHandler.php -------------------------------------------------------------------------------- /src/Handler/AirbrakeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/AirbrakeHandler.php -------------------------------------------------------------------------------- /src/Handler/AtatusHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/AtatusHandler.php -------------------------------------------------------------------------------- /src/Handler/BugsnagHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/BugsnagHandler.php -------------------------------------------------------------------------------- /src/Handler/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/HandlerInterface.php -------------------------------------------------------------------------------- /src/Handler/MonologStreamHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/MonologStreamHandler.php -------------------------------------------------------------------------------- /src/Handler/NewrelicHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/NewrelicHandler.php -------------------------------------------------------------------------------- /src/Handler/RaygunHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/RaygunHandler.php -------------------------------------------------------------------------------- /src/Handler/SentryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Handler/SentryHandler.php -------------------------------------------------------------------------------- /src/Utility/ConfigTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/src/Utility/ConfigTrait.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/php-error-handlers/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------