ramsalt / drupal-scaffold
Add this package to any Drupal distribution based on drupal/core-composer-scaffold to enable it for use at Ramsalt.
Installs: 110 863
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 10
Forks: 2
Open Issues: 3
- dev-master
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-beta10
- 1.0.0-beta9
- 1.0.0-beta8
- 1.0.0-beta7
- 1.0.0-beta6
- 1.0.0-beta5
- 1.0.0-beta4
- 1.0.0-beta3
- 1.0.0-beta2
- 1.0.0-beta1
- dev-exclude-node-modules
- dev-issue/drush-12-and-above-include_once
- dev-code-qa
- dev-rebuild-caches
- dev-szeidler-database-credentials
- dev-update_gitignore_comments
- dev-feature/update_local_settings
- dev-php-8.3
- dev-avoid-memory-exhaustion
- dev-renovate-config-base-to-recommended
- dev-drupal-env
- dev-fix/settings-update_free_access
- dev-drush-local-configs
- dev-jfauske-translations-directory
- dev-jfauske-patch-1
- dev-doxigo-patch-2
- dev-renovate-constraints
- dev-monolog-prod
- dev-patch-against-main
- dev-feature/testing
- dev-doxigo-patch-1
- dev-add-setup-commands-on-readme
This package is auto-updated.
Last update: 2025-02-28 09:24:28 UTC
README
Add this project to any Drupal site based on drupal/core-composer-scaffold to enable it for use at Ramsalt.
This project enables the following features:
- Adds
settings.php
for the use in wodby - Adds settings files for each environment
- Provides
wodby.yml
post deployment scripts - Enables drupal-patches with an separate
composer.patches.json
file - Provides the default circleci deployment configuration used at Ramsalt
- Provides a default Renovatebot configuration.
Enabling this project
This package must be enabled in the top-level composer.json file, or it will be ignored and will not perform any o its functions.
-
Add the package in the 'drupal-scaffold' allow-list:
composer config extra.drupal-scaffold.allowed-packages --json '["ramsalt/drupal-scaffold"]'
Note: If you already have other packages listed in drupal-scaffold.allowed-packages configuration this command is not for you. In this case you need to manually add
"ramsalt/drupal-scaffold"
to the array. -
Require this package as you normally would:
composer require ramsalt/drupal-scaffold
The resulting composer.json should contain the following:
{ "require": { "ramsalt/drupal-scaffold": "^1@beta" }, "extra": { "drupal-scaffold": { "allowed-packages": [ "ramsalt/drupal-scaffold" ] } } }