laravel-self-diagnosis
laravel-self-diagnosis copied to clipboard
Perform Self-Diagnosis Tests On Your Laravel Application
Hi, is there any reason this package specifically depends on PHP `^8.2`? https://github.com/beyondcode/laravel-self-diagnosis/blob/99ec962bb95c9ebae03f8e7a685af033657ffecf/composer.json#L19 As far as I can tell, none of the dependencies seem to be `^8.2` only, and I...
Running this package in Laravel sail returns an incorrect error message: ``` The following extensions are missing: imagick ``` Running the following command shows that imagick is actually installed: ```cli...
Fix issue with `phpredis` driver in the `RedisCanBeAccessed` checker Related issue #68
For my project I've implemented checker for php.ini options. Configuration looks like this: ```php \App\Libraries\SelfDiagnosis\Checks\PhpIniOptions::class => [ 'options' => [ 'upload_max_filesize' => '>=128M', 'post_max_size' => '>=128M', 'memory_limit' => '>=128M', 'max_input_vars'...
I've added a slimmed down implementation of [laravel-env-scanner](https://github.com/mtolhuys/laravel-env-scanner) to count undefined environmental variables used in `config/` and `app/` directories by `env()` & `getenv()` helpers.
### What The check `ExampleEnvironmentVariablesAreSet` only compares the `.env.example` with the `.env` file. It would make sense to check if actual environment variables are set too. ### Why We're running...
Hello, thank you for the great package, it is indeed very useful! :) Wanted just to ask if it would be possibile to add the option in the config file...
When an in-memory caching is used in a shared hosting environment (e.g. because there's an additional staging system on the same server) and no cache prefix is set and Laravel...
Please add a test for `composer validate` If package.json exists, run `npm audit` Check that `roave/security-advisories: dev-master` is in composer.json It should be the only package as dev-master, which can...
For my project, I've implemented checker for the available disk space. Configuration looks like this: ```php \App\Libraries\SelfDiagnosis\Checks\AvailableDiskSpace::class => [ 'paths' => [ '/' => '100G', // At least 100G should...