├── .mailmap ├── CHANGELOG.md ├── LICENSE.md ├── SECURITY.md ├── composer.json └── src └── Whoops ├── Exception ├── ErrorException.php ├── Formatter.php ├── Frame.php ├── FrameCollection.php └── Inspector.php ├── Handler ├── CallbackHandler.php ├── Handler.php ├── HandlerInterface.php ├── JsonResponseHandler.php ├── PlainTextHandler.php ├── PrettyPageHandler.php └── XmlResponseHandler.php ├── Inspector ├── InspectorFactory.php ├── InspectorFactoryInterface.php └── InspectorInterface.php ├── Resources ├── css │ ├── prism.css │ └── whoops.base.css ├── js │ ├── clipboard.min.js │ ├── prism.js │ ├── whoops.base.js │ └── zepto.min.js └── views │ ├── env_details.html.php │ ├── frame_code.html.php │ ├── frame_list.html.php │ ├── frames_container.html.php │ ├── frames_description.html.php │ ├── header.html.php │ ├── header_outer.html.php │ ├── layout.html.php │ ├── panel_details.html.php │ ├── panel_details_outer.html.php │ ├── panel_left.html.php │ └── panel_left_outer.html.php ├── Run.php ├── RunInterface.php └── Util ├── HtmlDumperOutput.php ├── Misc.php ├── SystemFacade.php └── TemplateHelper.php /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/LICENSE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/composer.json -------------------------------------------------------------------------------- /src/Whoops/Exception/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Exception/ErrorException.php -------------------------------------------------------------------------------- /src/Whoops/Exception/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Exception/Formatter.php -------------------------------------------------------------------------------- /src/Whoops/Exception/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Exception/Frame.php -------------------------------------------------------------------------------- /src/Whoops/Exception/FrameCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Exception/FrameCollection.php -------------------------------------------------------------------------------- /src/Whoops/Exception/Inspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Exception/Inspector.php -------------------------------------------------------------------------------- /src/Whoops/Handler/CallbackHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/CallbackHandler.php -------------------------------------------------------------------------------- /src/Whoops/Handler/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/Handler.php -------------------------------------------------------------------------------- /src/Whoops/Handler/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/HandlerInterface.php -------------------------------------------------------------------------------- /src/Whoops/Handler/JsonResponseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/JsonResponseHandler.php -------------------------------------------------------------------------------- /src/Whoops/Handler/PlainTextHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/PlainTextHandler.php -------------------------------------------------------------------------------- /src/Whoops/Handler/PrettyPageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/PrettyPageHandler.php -------------------------------------------------------------------------------- /src/Whoops/Handler/XmlResponseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Handler/XmlResponseHandler.php -------------------------------------------------------------------------------- /src/Whoops/Inspector/InspectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Inspector/InspectorFactory.php -------------------------------------------------------------------------------- /src/Whoops/Inspector/InspectorFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Inspector/InspectorFactoryInterface.php -------------------------------------------------------------------------------- /src/Whoops/Inspector/InspectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Inspector/InspectorInterface.php -------------------------------------------------------------------------------- /src/Whoops/Resources/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/css/prism.css -------------------------------------------------------------------------------- /src/Whoops/Resources/css/whoops.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/css/whoops.base.css -------------------------------------------------------------------------------- /src/Whoops/Resources/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/js/clipboard.min.js -------------------------------------------------------------------------------- /src/Whoops/Resources/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/js/prism.js -------------------------------------------------------------------------------- /src/Whoops/Resources/js/whoops.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/js/whoops.base.js -------------------------------------------------------------------------------- /src/Whoops/Resources/js/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/js/zepto.min.js -------------------------------------------------------------------------------- /src/Whoops/Resources/views/env_details.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/env_details.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/frame_code.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/frame_code.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/frame_list.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/frame_list.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/frames_container.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/frames_container.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/frames_description.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/frames_description.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/header.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/header.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/header_outer.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/header_outer.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/layout.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/layout.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/panel_details.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/panel_details.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/panel_details_outer.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/panel_details_outer.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/panel_left.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/panel_left.html.php -------------------------------------------------------------------------------- /src/Whoops/Resources/views/panel_left_outer.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Resources/views/panel_left_outer.html.php -------------------------------------------------------------------------------- /src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Run.php -------------------------------------------------------------------------------- /src/Whoops/RunInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/RunInterface.php -------------------------------------------------------------------------------- /src/Whoops/Util/HtmlDumperOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Util/HtmlDumperOutput.php -------------------------------------------------------------------------------- /src/Whoops/Util/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Util/Misc.php -------------------------------------------------------------------------------- /src/Whoops/Util/SystemFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Util/SystemFacade.php -------------------------------------------------------------------------------- /src/Whoops/Util/TemplateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filp/whoops/HEAD/src/Whoops/Util/TemplateHelper.php --------------------------------------------------------------------------------