├── LICENSE ├── README.md ├── composer.json ├── config ├── error-hero-module.local.php.dist ├── mezzio-error-hero-module.local.php.dist └── module.config.php ├── src ├── Command │ ├── BaseLoggingCommand.php │ ├── BaseLoggingCommandInitializer.php │ └── Preview │ │ └── ErrorPreviewConsoleCommand.php ├── Compat │ ├── Logger.php │ └── LoggerAbstractServiceFactory.php ├── Controller │ └── ErrorPreviewController.php ├── Handler │ ├── Formatter │ │ └── Json.php │ ├── Logging.php │ ├── LoggingFactory.php │ └── Writer │ │ ├── Checker │ │ └── Db.php │ │ └── Mail.php ├── HeroConstant.php ├── HeroFunction.php ├── HeroTrait.php ├── Listener │ ├── Mvc.php │ └── MvcFactory.php ├── Middleware │ ├── Mezzio.php │ ├── MezzioFactory.php │ └── Routed │ │ └── Preview │ │ └── ErrorPreviewAction.php ├── Module.php └── Transformer │ ├── Doctrine.php │ ├── PimpleService.php │ ├── SymfonyService.php │ ├── TransformerAbstract.php │ └── TransformerInterface.php └── view └── error-hero-module ├── error-default.html.twig └── error-default.phtml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/composer.json -------------------------------------------------------------------------------- /config/error-hero-module.local.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/config/error-hero-module.local.php.dist -------------------------------------------------------------------------------- /config/mezzio-error-hero-module.local.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/config/mezzio-error-hero-module.local.php.dist -------------------------------------------------------------------------------- /config/module.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/config/module.config.php -------------------------------------------------------------------------------- /src/Command/BaseLoggingCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Command/BaseLoggingCommand.php -------------------------------------------------------------------------------- /src/Command/BaseLoggingCommandInitializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Command/BaseLoggingCommandInitializer.php -------------------------------------------------------------------------------- /src/Command/Preview/ErrorPreviewConsoleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Command/Preview/ErrorPreviewConsoleCommand.php -------------------------------------------------------------------------------- /src/Compat/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Compat/Logger.php -------------------------------------------------------------------------------- /src/Compat/LoggerAbstractServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Compat/LoggerAbstractServiceFactory.php -------------------------------------------------------------------------------- /src/Controller/ErrorPreviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Controller/ErrorPreviewController.php -------------------------------------------------------------------------------- /src/Handler/Formatter/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Handler/Formatter/Json.php -------------------------------------------------------------------------------- /src/Handler/Logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Handler/Logging.php -------------------------------------------------------------------------------- /src/Handler/LoggingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Handler/LoggingFactory.php -------------------------------------------------------------------------------- /src/Handler/Writer/Checker/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Handler/Writer/Checker/Db.php -------------------------------------------------------------------------------- /src/Handler/Writer/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Handler/Writer/Mail.php -------------------------------------------------------------------------------- /src/HeroConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/HeroConstant.php -------------------------------------------------------------------------------- /src/HeroFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/HeroFunction.php -------------------------------------------------------------------------------- /src/HeroTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/HeroTrait.php -------------------------------------------------------------------------------- /src/Listener/Mvc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Listener/Mvc.php -------------------------------------------------------------------------------- /src/Listener/MvcFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Listener/MvcFactory.php -------------------------------------------------------------------------------- /src/Middleware/Mezzio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Middleware/Mezzio.php -------------------------------------------------------------------------------- /src/Middleware/MezzioFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Middleware/MezzioFactory.php -------------------------------------------------------------------------------- /src/Middleware/Routed/Preview/ErrorPreviewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Middleware/Routed/Preview/ErrorPreviewAction.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Transformer/Doctrine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Transformer/Doctrine.php -------------------------------------------------------------------------------- /src/Transformer/PimpleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Transformer/PimpleService.php -------------------------------------------------------------------------------- /src/Transformer/SymfonyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Transformer/SymfonyService.php -------------------------------------------------------------------------------- /src/Transformer/TransformerAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Transformer/TransformerAbstract.php -------------------------------------------------------------------------------- /src/Transformer/TransformerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/src/Transformer/TransformerInterface.php -------------------------------------------------------------------------------- /view/error-hero-module/error-default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/view/error-hero-module/error-default.html.twig -------------------------------------------------------------------------------- /view/error-hero-module/error-default.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonasik/ErrorHeroModule/HEAD/view/error-hero-module/error-default.phtml --------------------------------------------------------------------------------