Matt Jones

Results 23 comments of Matt Jones

I just updated my work development machine to 21.10 without checking all these packages were available (my bad). These packages don't just get used on servers :) For me it...

That sounds excellent! Happy to send a PR or collaborate on this if it makes sense. I did take a look but I couldn't see any way of doing it...

Hi @Daanra, I had just assumed those `create()` and `createNow()` methods on the Facade would have to be updated. If doing as you suggest this makes for a far simpler...

Yeah we actually include dotenv in our drupal projects and just put the following in our settings.php / settings.local.php file. ``` $dotenv = new Dotenv\Dotenv(dirname(DRUPAL_ROOT)); $dotenv->load(); $databases['default']['default'] = array (...

Most hosts these days are running php-fcgi anyway, in which case the web user and the ftp user are one and the same. 777 perms just bring in the *potential*...

Ah I found a little more detail from the imagemagick CLI: ``` ~/Desktop identify 3-stylish-men-xmas.gif 3-stylish-men-xmas.gif[0] GIF 800x550 800x550+0+0 8-bit sRGB 256c 0.000u 0:00.000 3-stylish-men-xmas.gif[1] GIF 376x458 800x550+3+59 8-bit sRGB...

I can confirm I'm also getting this (or something very similar, depending on `altFormat`). ``` { altInput: true, altFormat: 'd/m/Y H:i', dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, locale: {...

I've been looking into this again, and I think it would allow developers much more flexibility if one or both of the following could be added: 1. A new filter...

I did just discover a work-around: ```php // Add a way of accessing the storage path Vite::macro('assetSystemPath', function ($asset, $buildDirectory = null) { $buildDirectory ??= $this->buildDirectory; if ($this->isRunningHot()) { return...