gitextract_66wvtac2/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── php-code-quality.yml │ └── php-lint.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── config.php ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml.dist ├── phpunit.xml.dist.bak ├── pint.json ├── psalm.xml ├── rector.php ├── resources/ │ └── views/ │ └── laralens/ │ ├── index.blade.php │ └── term/ │ ├── checks.blade.php │ └── table.blade.php ├── routes/ │ └── web.php ├── src/ │ ├── Console/ │ │ └── LaraLensCommand.php │ ├── Http/ │ │ └── Controllers/ │ │ ├── Controller.php │ │ └── LaraLensController.php │ ├── LaraLensFacade.php │ ├── LaraLensServiceProvider.php │ ├── Lens/ │ │ ├── LaraHttp.php │ │ ├── LaraLens.php │ │ ├── Objects/ │ │ │ └── LaraHttpResponse.php │ │ └── Traits/ │ │ ├── BaseTraits.php │ │ ├── ConfigLens.php │ │ ├── DatabaseLens.php │ │ ├── FilesystemLens.php │ │ ├── HttpConnectionLens.php │ │ ├── OperatingSystemLens.php │ │ ├── RuntimeLens.php │ │ └── TermOutput.php │ └── ResultLens.php └── tests/ ├── Feature/ │ └── ConsistencyTest.php ├── Pest.php └── TestCase.php