This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
stream-demo/composer.json

78 lines
2.6 KiB
JSON
Raw Normal View History

2020-07-21 00:26:36 +00:00
{
"name": "opdavies/stream-demo",
"description": "A demo Drupal 9 application.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
2020-07-21 12:34:43 +00:00
},
{
"type": "vcs",
"url": "https://github.com/opdavies/drupal-module-simple-message"
2020-07-21 00:26:36 +00:00
}
],
"require": {
"composer/installers": "^1.9",
2020-07-21 18:50:11 +00:00
"drupal/admin_toolbar": "^2.3",
2020-07-21 00:26:36 +00:00
"drupal/core-composer-scaffold": "^9.0",
"drupal/core-project-message": "^9.0",
"drupal/core-recommended": "^9.0",
2020-07-21 12:34:43 +00:00
"drupal/simple_message": "^2",
2020-07-21 18:51:47 +00:00
"drupal/tailwindcss": "^4",
2020-07-21 00:26:36 +00:00
"drush/drush": "^10.3",
"vlucas/phpdotenv": "^5.1"
},
"require-dev": {
"drupal/core-dev": "^9.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/example.settings.local.php": {
"mode": "append",
"append": "assets/example.settings.local-append.txt"
}
}
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
}
},
"autoload": {
"files": ["helpers.php"]
},
"scripts": {
"post-drupal-scaffold-cmd": [
"cp web/sites/default/default.settings.php web/sites/default/settings.php",
"patch -p1 < patches/settings-local.patch",
"cp web/sites/default/default.services.yml web/sites/default/services.yml",
"cp web/sites/example.settings.local.php web/sites/default/settings.local.php"
]
}
}