QWp6t

Results 45 comments of QWp6t

You can pass a callback to `Bootloader::boot()` ```php Roots\bootloader()->boot(function ($app) { $app->singleton( \Illuminate\Contracts\Http\Kernel::class, \App\Http\MySuperCoolKernel::class ); }); ``` That should be fine for most of you. If you want to have...

If it makes sense, I'd suggest a more explicit feature flag for this such as `ENABLE_ASSET_BUILD_TIME_COMPRESSION` as an alternative to `IS_DOCKER`. Also that ternary operation appears to me as though...

Until wp-cli [supports `--` as a delimiter to separate options from operands](https://pubs.opengroup.org/onlinepubs/9699919799/), we cannot provide a way to support this without resorting to janky solutions. > Guideline 10: > The...

Since this triggers behavior changes, we need to weigh that against our goal of maintaining [environment parity](https://roots.io/twelve-factor-10-dev-prod-parity/). From the [referenced blog post](https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/): > having the `theme.json` data cache bypassed would...

possibly time to revisit this? wp 4.4 covers quite a bit of both [multisite](https://core.trac.wordpress.org/query?status=closed&component=Networks+and+Sites&milestone=4.4&group=resolution&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority) and [rest api](https://core.trac.wordpress.org/query?status=closed&component=REST+API&milestone=4.4&group=resolution&col=id&col=summary&col=component&col=owner&col=type&col=priority&col=version&order=priority) stuff. I did take a quick look through all of that, and I...

Is this the result of a cached config?

As an alternative approach, you can specify a different [`installer-paths`](https://getcomposer.org/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md) for this package. To borrow from [Bedrock's composer.json](https://github.com/roots/bedrock/blob/master/composer.json#L59-L66) ```diff "extra": { "installer-paths": { - "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"], + "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin", "roots/wp-password-bcrypt"],...

I haven't dug into this yet, but I just wanted to say thanks for providing an informative bug report with along with workarounds that you've tried, research that you've done...

> We should ensure that there is a way to filter plugin dependency checks to tell WordPress that the Acorn plugin is installed when it's loaded via Bedrock instead of...

It's literally the first line of code. ``` php add_action('generate_rewrite_rules', __NAMESPACE__ . '\\ApacheServerConfig::init', -9999, 0); ``` There's not much else that I know of that I can do besides set...