├── pint.json
├── LaraLens-Laravel-Artisan.png
├── routes
└── web.php
├── phpstan.neon
├── phpcs.xml
├── src
├── LaraLensFacade.php
├── Http
│ └── Controllers
│ │ ├── Controller.php
│ │ └── LaraLensController.php
├── Lens
│ ├── Traits
│ │ ├── BaseTraits.php
│ │ ├── TermOutput.php
│ │ ├── OperatingSystemLens.php
│ │ ├── HttpConnectionLens.php
│ │ ├── FilesystemLens.php
│ │ ├── ConfigLens.php
│ │ ├── DatabaseLens.php
│ │ └── RuntimeLens.php
│ ├── LaraHttp.php
│ ├── Objects
│ │ └── LaraHttpResponse.php
│ └── LaraLens.php
├── ResultLens.php
├── LaraLensServiceProvider.php
└── Console
│ └── LaraLensCommand.php
├── config
└── config.php
├── psalm.xml
├── rector.php
├── .github
└── workflows
│ ├── php-lint.yml
│ └── php-code-quality.yml
├── phpunit.xml.dist.bak
├── LICENSE.md
├── resources
└── views
│ └── laralens
│ ├── term
│ ├── table.blade.php
│ └── checks.blade.php
│ └── index.blade.php
├── composer.json
├── CONTRIBUTING.md
├── README.md
└── CHANGELOG.md
/pint.json:
--------------------------------------------------------------------------------
1 | {
2 | "preset": "psr12"
3 | }
4 |
--------------------------------------------------------------------------------
/LaraLens-Laravel-Artisan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hi-Folks/lara-lens/HEAD/LaraLens-Laravel-Artisan.png
--------------------------------------------------------------------------------
/routes/web.php:
--------------------------------------------------------------------------------
1 | name('laralens.index');
7 |
--------------------------------------------------------------------------------
/phpstan.neon:
--------------------------------------------------------------------------------
1 | includes:
2 | - ./vendor/larastan/larastan/extension.neon
3 | parameters:
4 | reportUnmatchedIgnoredErrors: false
5 | ignoreErrors:
6 | - '#Parameter .1 \$separator of function explode expects non-empty-string, string given.#'
7 |
8 | level: 5
9 | paths:
10 | - src
11 |
--------------------------------------------------------------------------------
/phpcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
49 | {{$item['description']}} 50 |
51 |{{ $item['label'] }}
74 |{{ $item['value'] }}
75 |{{ $item['label'] }}
80 |{{ $item['value'] }}
81 |{{ $item['label'] }}
85 |{{ $item['value'] }}
86 |{{ $item['label'] }}
90 |{{ $item['value'] }}
91 |