gitextract__81p91l1/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_Bug_Report.md │ │ ├── 2_Feature_Request.md │ │ └── 3_Laravel_Version_Support.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── art/ │ ├── sponsor-laravel-idea.pxd/ │ │ ├── QuickLook/ │ │ │ ├── Icon.tiff │ │ │ └── Thumbnail.tiff │ │ ├── data/ │ │ │ └── originalImportedContentDocumentInfo │ │ └── metadata.info │ └── sponsor-material-theme.pxd/ │ ├── QuickLook/ │ │ ├── Icon.tiff │ │ └── Thumbnail.tiff │ ├── data/ │ │ ├── 0D6D801E-30F3-46BF-815B-DC27D2EB5BE0 │ │ └── originalImportedContentDocumentInfo │ └── metadata.info ├── composer.json ├── config/ │ └── db-profiler.php ├── phpunit.xml.dist ├── src/ │ ├── DbProfilerDumper.php │ └── DbProfilerServiceProvider.php └── tests/ ├── ConsoleProfilingTest.php ├── HttpProfilingTest.php ├── TestCase.php └── fixture/ ├── app/ │ └── Post.php └── database/ └── migrations/ └── 2016_11_01_131415_create_posts_table.php