gitextract_qw9s0v9n/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .mailmap ├── .scrutinizer.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── composer.json ├── docs/ │ ├── API Documentation.md │ ├── Framework Integration.md │ ├── Open Files In An Editor.md │ └── Replay Errors.md ├── examples/ │ ├── example-ajax-only.php │ ├── example.php │ └── lib.php ├── phpunit.xml.dist ├── 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/ │ │ │ ├── prism.js │ │ │ └── whoops.base.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 └── tests/ ├── Whoops/ │ ├── Exception/ │ │ ├── FormatterTest.php │ │ ├── FrameCollectionTest.php │ │ ├── FrameTest.php │ │ └── InspectorTest.php │ ├── Handler/ │ │ ├── CallbackHandlerTest.php │ │ ├── JsonResponseHandlerTest.php │ │ ├── PlainTextHandlerTest.php │ │ ├── PrettyPageHandlerTest.php │ │ └── XmlResponseHandlerTest.php │ ├── RunTest.php │ ├── TestCase.php │ └── Util/ │ ├── HtmlDumperOutputTest.php │ ├── MiscTest.php │ ├── SystemFacadeTest.php │ └── TemplateHelperTest.php ├── bootstrap.php └── fixtures/ ├── frame.lines-test.php └── template.php