I'm pretty sure we can support drush successfully with this technique, discussed in https://drupal.slack.com/archives/C62H9CWQM/p1714512734554949
hooks:
post-start:
exec: git stash && composer require drush/drush && git stash apply
Then we can use ddev drush si and all the other wonderful riches of drush...without messing up the composer.json or composer.lock.
It's slightly intrusive, and DDEV itself would never do anything like that by policy... but this is an opinionated add-on.
I'll be happy to do a PR to add this to config.ddev-drupal-core-dev.yaml after
Tests and everything else could then be run using DDEV's settings.ddev.php, using all database types, etc.
I'm pretty sure we can support drush successfully with this technique, discussed in https://drupal.slack.com/archives/C62H9CWQM/p1714512734554949
Then we can use
ddev drush siand all the other wonderful riches of drush...without messing up the composer.json or composer.lock.It's slightly intrusive, and DDEV itself would never do anything like that by policy... but this is an opinionated add-on.
I'll be happy to do a PR to add this to config.ddev-drupal-core-dev.yaml after
gets in.
Tests and everything else could then be run using DDEV's settings.ddev.php, using all database types, etc.