drutopia / drutopia_template
Project template for Drupal 9 Drutopia projects with a relocated document root
Requires
- composer/installers: ^1.9
- drupal/core-composer-scaffold: ^9
- drupal/core-project-message: ^9
- drupal/core-recommended: ^9
- drush/drush: ^10
- drutopia/drutopia: dev-8.x-1.x
Conflicts
This package is auto-updated.
Last update: 2024-10-25 22:48:20 UTC
README
This is a composer based installer for the Drutopia distribution.
Prerequisites
Installation of Drutopia basic
composer create-project drutopia/drutopia_template:dev-master --no-interaction DIRECTORY
Composer will create a new directory called DIRECTORY (change to whatever presumably lower-case name you would like). Inside you will find the web directory with the entire code base of Drutopia distribution. You should be able to install it like any other Drupal site.
Updating
Drutopia manages the version of Drupal core, so you should not require the drupal/core
project. To update to a new version of core, update to the version of Drutopia that includes the new core version. For example:
composer require --no-update drutopia/drutopia:~1.0-rc2
composer update
Making and managing custom changes
You will likely want to add the contents of this directory to git version control, including the composer.lock
file that was created when you ran composer create-project
.
You can composer require
any packages such as Drupal modules you wish to add to your site.