composer.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "drupal/recommended-project",
  3. "description": "Project template for Drupal 9 projects with a relocated document root",
  4. "type": "project",
  5. "license": "GPL-2.0-or-later",
  6. "homepage": "https://www.drupal.org/project/drupal",
  7. "support": {
  8. "docs": "https://www.drupal.org/docs/user_guide/en/index.html",
  9. "chat": "https://www.drupal.org/node/314178"
  10. },
  11. "repositories": [
  12. {
  13. "type": "composer",
  14. "url": "https://packages.drupal.org/8"
  15. }
  16. ],
  17. "require": {
  18. "composer/installers": "^1.9",
  19. "drupal/administerusersbyrole": "^3.0",
  20. "drupal/core-composer-scaffold": "^9.2",
  21. "drupal/core-project-message": "^9.2",
  22. "drupal/core-recommended": "^9.2",
  23. "drupal/image_delta_formatter": "^1.1",
  24. "drupal/manage_display": "1.x-dev@dev",
  25. "drupal/page_manager": "4.x-dev@dev",
  26. "drupal/panels": "^4.6",
  27. "drupal/role_delegation": "^1.1",
  28. "drupal/structure_sync": "^2.0",
  29. "wikimedia/composer-merge-plugin": "^2.0"
  30. },
  31. "conflict": {
  32. "drupal/drupal": "*"
  33. },
  34. "minimum-stability": "stable",
  35. "prefer-stable": true,
  36. "config": {
  37. "sort-packages": true
  38. },
  39. "extra": {
  40. "drupal-scaffold": {
  41. "locations": {
  42. "web-root": "web/"
  43. }
  44. },
  45. "installer-paths": {
  46. "web/core": [
  47. "type:drupal-core"
  48. ],
  49. "web/libraries/{$name}": [
  50. "type:drupal-library"
  51. ],
  52. "web/modules/contrib/{$name}": [
  53. "type:drupal-module"
  54. ],
  55. "web/profiles/contrib/{$name}": [
  56. "type:drupal-profile"
  57. ],
  58. "web/themes/contrib/{$name}": [
  59. "type:drupal-theme"
  60. ],
  61. "drush/Commands/contrib/{$name}": [
  62. "type:drupal-drush"
  63. ],
  64. "web/modules/custom/{$name}": [
  65. "type:drupal-custom-module"
  66. ],
  67. "web/profiles/custom/{$name}": [
  68. "type:drupal-custom-profile"
  69. ],
  70. "web/themes/custom/{$name}": [
  71. "type:drupal-custom-theme"
  72. ]
  73. },
  74. "drupal-core-project-message": {
  75. "include-keys": [
  76. "homepage",
  77. "support"
  78. ],
  79. "post-create-project-cmd-message": [
  80. "<bg=blue;fg=white> </>",
  81. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  82. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  83. "<bg=blue;fg=white> </>",
  84. "",
  85. "<bg=yellow;fg=black>Next steps</>:",
  86. " * Install the site: https://www.drupal.org/docs/8/install",
  87. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  88. " * Get support: https://www.drupal.org/support",
  89. " * Get involved with the Drupal community:",
  90. " https://www.drupal.org/getting-involved",
  91. " * Remove the plugin that prints this message:",
  92. " composer remove drupal/core-project-message"
  93. ]
  94. },
  95. "merge-plugin": {
  96. "include": [
  97. "web/profiles/d8-starterkit-profile/composer.json"
  98. ],
  99. "recurse": true,
  100. "replace": false,
  101. "merge-extra": true
  102. },
  103. "patches": {
  104. "drupal/core": {
  105. "Title formatting broken due to flawed EntityViewController->buildTitle https://www.drupal.org/project/drupal/issues/2941208": "https://www.drupal.org/files/issues/2021-05-20/entity.title-2941208-133_1.patch"
  106. }
  107. }
  108. }
  109. }