Mark Huot

Results 109 comments of Mark Huot

That makes sense. To make sure I'm understanding everything correctly: the code in the PR as it currently stands _only_ affects the meta containers pulling from the cache or not....

bump. Any interest in this?

Mistaken PR. Sorry! Although… these changes may actually be relevant. If you're at all curious, 1. fixes a bug where Matrix block types that don't contain any text fields would...

Similar question. We're using FeedMe in production for hourly imports from an ERP and I'm worried about those log files growing to epic sizes without manually deleting old logs…

Passing tests! Need to get docs generating and then this'll be ready to merge. FYI, this will break `markhuot/craft-pest` in to two repos: - `markhuot/craft-pest` which will eventually contain a...

Yup, should work on Craft 4.5+ now. You can either target `markhuot/craft-pest dev-v2` or if you don't want to enable the plugin just `composer require --dev markhuot/craft-pest-core` and that should...

If you're on Craft 4 can you please try `compose require markhuot/craft-pest-core` and see if that makes any differences? If you're on Craft 5 please try `composer require markhuot/craft-pest-core:dev-craft5`. I...

Nope, unfortunately that's all "expected". 1. `craft-pest-core` runs Pest 2 which is why the `--migrate-configuration` is necessary 2. the `filemtime()` warning comes from Yii calling `@filemtime()` without a `file_exists()` first....

User factories will take any custom fields, same as any other element so you could do, ```php $user = \markhuot\craftpest\factories\User::factory() ->customField('value') ->email('[email protected]') ->create(); ``` In addition, there's a helper for...