drunomics / drupal-project
Project template for drunomics Drupal projects
Installs: 6 465
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 942
Type:project
Requires
- cweagans/composer-patches: ^1.7.2
- drupal/core-composer-scaffold: ^10
- drupal/core-recommended: ^10
- drush/drush: *
- oomphinc/composer-installers-extender: ^2.0.1
- symfony/dotenv: ^5.4.22
Requires (Dev)
- drunomics/playwright-drupal-utils: ^1.0.0
- drupal/core-dev: ^10
Conflicts
- 6.x-dev
- 6.5.1
- 6.5.0
- 6.4.1
- 6.4.0
- 6.3.5
- 6.3.4
- 6.3.3
- 6.3.2
- 6.3.1
- 6.3.0
- 6.2.2
- 6.2.1
- 6.2.0
- 6.1.1
- 6.1.0
- 6.0.1
- 6.0.0
- 5.x-dev
- 5.2.2
- 5.2.1
- 5.2.0
- 5.1.1
- 5.1.0
- 5.0.1
- 5.0.0
- 4.x-dev
- 4.3.1
- 4.3.0
- 4.2.5
- 4.2.4
- 4.2.3
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.4
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.0
- 4.0.0-beta1
- 3.x-dev
- 3.19.0
- 3.18.1
- 3.18.0
- 3.17.1
- 3.17.0
- 3.16.0
- 3.15.0
- 3.14.2
- 3.14.1
- 3.13.2
- 3.13.1
- 3.13.0
- 3.12.2
- 3.12.1
- 3.11.2
- 3.11.1
- 3.11.0
- 3.10.2
- 3.10.1
- 3.10.0
- 3.9.0
- 3.8.3
- 3.8.2
- 3.8.1
- 3.8.0
- 3.7.7
- 3.7.6
- 3.7.5
- 3.7.4
- 3.7.3
- 3.7.2
- 3.7.1
- 3.7.0
- 3.6.3
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.1
- 3.5.0
- 3.4.3
- 3.4.2
- 3.4.1
- 3.4.0
- 3.3.0
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.4.0
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.x-dev
- 2.0.14
- 2.0.13
- 2.0.11
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.9
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
- dev-bugfix/LDP-2635
- dev-2.x-drupalvm
This package is auto-updated.
Last update: 2024-11-07 15:41:26 UTC
README
Builds upon https://github.com/drupal-composer/drupal-project.
Version compatibility
Usage
First you need to install composer.
Note: The instructions below refer to the global composer installation. You might need to replace
composer
withphp composer.phar
(or similar) for your setup.
After that you can create the project:
// Last stable version:
composer create-project drunomics/drupal-project:6.* PROJECT
// Last development version:
composer create-project drunomics/drupal-project:6.*@dev --stability dev PROJECT
With composer require ...
you can download new dependencies to your
installation.
cd PROJECT
composer require drupal/devel:~1.0
The composer create-project
command passes ownership of all files to the
project that is created. You should create a new git repository, and commit
all files not excluded by the .gitignore file.
Documentation overview
The template builds upon drupal-composer/drupal-project. Please follow the README of https://github.com/drupal-composer/drupal-project for general documentation.
Optional features
Some optional features can be enabled by setting some environment variables when creating the project. To set a variable, you can set the variable when invoking composer; e.g.:
VARIABLE=1 composer create-project drunomics/drupal-project PROJECT
The following variables are supported:
Default variables
Environment variables that can be configured project-wide are managed in
.defaults.env
. Refer to the prepared variables in the file for environment
variables tha are already supported in the template.