acquia / reservoir-project
Project template for Drupal 8 sites built with the Reservoir distribution.
Installs: 2 089
Dependents: 0
Suggesters: 0
Security: 0
Stars: 27
Watchers: 18
Forks: 3
Open Issues: 6
Type:project
Requires
- acquia/reservoir: 1.0.0-alpha4
- composer/installers: ^1.0
- cweagans/composer-patches: ~1.0
- drupal-composer/drupal-scaffold: ^2.0.0
This package is not auto-updated.
Last update: 2023-03-14 18:15:56 UTC
README
Reservoir: Composer installer
This is a Composer-based installer for the Reservoir Drupal distribution.
Get started
$ composer create-project acquia/reservoir-project MY_PROJECT --stability=alpha
Composer will create a new directory called MY_PROJECT
containing a docroot
directory with a full Reservoir codebase therein.
Source control
If you peek at the .gitignore
we provide, you'll see that certain directories, including all directories containing contributed projects, are excluded from source control.
When you set up the project, Composer will create a file called composer.lock
, which is a list of which dependencies were installed and in which versions. Commit composer.lock
to source control! Then, when your colleagues want to spin up their own copies of the project, all they'll have to do is run composer install
, which will install the correct versions of everything in composer.lock
.