drupal-project
drupal-project copied to clipboard
:rocket: Composer template for Drupal projects. Quick installation via "composer create-project drupal-composer/drupal-project"
php 7.4 is minimum required version of php with respect to Drupal 9.4 and drush 11.
Currently there are two ways to lose /web directory completely: ### Apply a patch to Drupal core We have this code: https://github.com/drupal-composer/drupal-project/blob/339c81dcfd6881f3f3e1069b8ab3fe4149094e6b/composer.json#L76-L80 It tries to solve the issue described in...
Fixes #274 I considered if the permissions should be set on the parent directory, but I think that should be left to decide for the user. (Please don't discuss -...
Doing an initial install by running `composer create-project drupal-composer/drupal-project ~/Sites/drupal8-composer --no-interaction --stability dev` as suggested from the README.md I got the following error on Drupal's install screen: > CONFIGURATION DIRECTORY:...
Due to https://github.com/composer/composer/pull/10065 Composer will now require any files specified as part of the autoloader when executing scripts and plugins, so in particular for this repo this that means `load.environment.php`...
I am running an automated upgrade as a test site for some Ansible I am developing using this repo. Upgrading a site in place hits a snag when the autoloader...
I am in the process of deploying my first drupal-composer-template-based project. Because the vendor directory is gitignored, I need to create a 'deployment artifact' containing the files I need on...
**Issue** : ScriptHandler execution fails while running composer commands with --no-install flag **Use case** : If I wanted to add additional modules or any other packages without actually downloading them...
I think the translations directory needs to be included within /sites/default/files via post-install script. However I dare not modifying as I may not be aware of undesired side-effects.
Acquia Cloud requires Drupal in a subdir named 'docroot' but this project uses 'web'. The 'web' name is used in scripts in addition to composer.json. Is there some better solution...