composer.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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/entity_type_clone": "^1.7",
  24. "drupal/image_delta_formatter": "^1.1",
  25. "drupal/manage_display": "1.x-dev@dev",
  26. "drupal/page_manager": "4.x-dev@dev",
  27. "drupal/panels": "^4.6",
  28. "drupal/paragraphs": "1.x-dev@dev",
  29. "drupal/role_delegation": "^1.1",
  30. "drupal/structure_sync": "^2.0",
  31. "wikimedia/composer-merge-plugin": "^2.0"
  32. },
  33. "conflict": {
  34. "drupal/drupal": "*"
  35. },
  36. "minimum-stability": "stable",
  37. "prefer-stable": true,
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "drupal-scaffold": {
  43. "locations": {
  44. "web-root": "web/"
  45. }
  46. },
  47. "installer-paths": {
  48. "web/core": [
  49. "type:drupal-core"
  50. ],
  51. "web/libraries/{$name}": [
  52. "type:drupal-library"
  53. ],
  54. "web/modules/contrib/{$name}": [
  55. "type:drupal-module"
  56. ],
  57. "web/profiles/contrib/{$name}": [
  58. "type:drupal-profile"
  59. ],
  60. "web/themes/contrib/{$name}": [
  61. "type:drupal-theme"
  62. ],
  63. "drush/Commands/contrib/{$name}": [
  64. "type:drupal-drush"
  65. ],
  66. "web/modules/custom/{$name}": [
  67. "type:drupal-custom-module"
  68. ],
  69. "web/profiles/custom/{$name}": [
  70. "type:drupal-custom-profile"
  71. ],
  72. "web/themes/custom/{$name}": [
  73. "type:drupal-custom-theme"
  74. ]
  75. },
  76. "drupal-core-project-message": {
  77. "include-keys": [
  78. "homepage",
  79. "support"
  80. ],
  81. "post-create-project-cmd-message": [
  82. "<bg=blue;fg=white> </>",
  83. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  84. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  85. "<bg=blue;fg=white> </>",
  86. "",
  87. "<bg=yellow;fg=black>Next steps</>:",
  88. " * Install the site: https://www.drupal.org/docs/8/install",
  89. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  90. " * Get support: https://www.drupal.org/support",
  91. " * Get involved with the Drupal community:",
  92. " https://www.drupal.org/getting-involved",
  93. " * Remove the plugin that prints this message:",
  94. " composer remove drupal/core-project-message"
  95. ]
  96. },
  97. "merge-plugin": {
  98. "include": [
  99. "web/profiles/d8-starterkit-profile/composer.json"
  100. ],
  101. "recurse": true,
  102. "replace": false,
  103. "merge-extra": true
  104. },
  105. "patches": {
  106. "drupal/core": {
  107. "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"
  108. },
  109. "drupal/paragraphs": {
  110. "Skip saving empty paragraphs for certain types https://www.drupal.org/project/paragraphs/issues/2877695" : "https://www.drupal.org/files/issues/2021-03-31/2877695-35.patch"
  111. }
  112. }
  113. }
  114. }