Avtandil Kikabidze
                                            Avtandil Kikabidze
                                        
                                    Can it be used with Redis for client-side sharding? Has this library some performance impact?
Would be great if we add foreign keys. For example I use custom migration file with schema like this: ```php Schema::create(self::getTableName(), static function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('entry_edge_id')->nullable()->comment('The ID of...
Would be great, if will be added methods for receiving ancestors and descendants as tree
Please add a sniff to format array key => value pairs, like PHPStorm does.  The main difference between already existing sniffs is they do not consider empty...
Is it possible to send data from PHP via Telegraf service, instead of writing directly in InfluxDB? It could increase performance by multiple times
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'...
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...
It would be very useful if there was an option per host for removing schema prefix (http://, https://), because when I want to use hostname from the config, like `config('app.url')`,...
I am using `phpredis` driver and getting multiple errors on `RedisCanBeAccessed` check. When `phpredis` is used as a Redis driver: 1. `Redis` facade should not be used in the code,...