Alexander Dmitryuk
Alexander Dmitryuk
It is not issue, only a wish. View composers doesn't supported at all https://laravel.com/docs/5.6/views#view-composers For example fast navigate to view ``` View::composer('client.home', App\Http\ViewComposers\testComposer::class); ``` Or in my dream navigate from...
Imagick has an option to resize image to maximum size ``` $imagick->setOption('jpeg:extent', '2500kb'); ``` Does the feature can be implemented with Intervention/image?
Swoole supports hot code reloading by using the linux command ``` kill -USR1 MASTER_PID ``` (MASTER_PID in my case is `1` ) Yasd don't reload breakpoints after worker restarted. **Steps...
A lot of users and issues (https://github.com/docker/compose/issues/2380, https://github.com/docker/compose/issues/4725) of docker-compose faced with problem: how to pass UID and GID? So where are some crutches like `export UID` or `UID=$UID docker-compose...
{ "mask": "+43(677)###-#####", "cc": "AT" }, { "mask": "+43(681)###-#####", "cc": "AT" }, { "mask": "+43(688)###-#####", "cc": "AT" }, { "mask": "+43(699)###-#####", "cc": "AT" },
Cannot start swoolefor. Server starting and immediately stopped. What do you think to do? ``` [2022-01-18 08:13:58] MIX.INFO: [Executor.php:68] executor start, exec: [/usr/local/bin/php -e /var/www/bin/server] 2022-01-18T08:13:58.716124434Z [2022-01-18 08:13:58] MIX.INFO: [Executor.php:82]...
I want to get sql like `select (np.params::json)->> 'slug'`, `np.params` is a text field DDL: ```sql JSON_GET_FIELD_AS_TEXT(TO_JSON(np.params), 'slug') ``` Finally got an error: `Doctrine\ORM\Query\QueryException: [Syntax Error] line 0, col 110:...
## Subject Sonata media Configuration has with default value https://github.com/sonata-project/SonataMediaBundle/blob/4.x/src/DependencyInjection/Configuration.php#L195 ``` ->scalarNode('directory')->defaultValue('%kernel.project_dir%/web/uploads/media')->end() ``` But starting from Symfony 4.4 `web` folder moved to `public`. So the bundle not working as expected...
After I run dive I can see thousands of changes. Can I filter it by file/directory size? Or it will be great to have the feature?