composer.json 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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/address": "^1",
  20. "drupal/admin_toolbar_content": "^1.3",
  21. "drupal/administerusersbyrole": "^3.3",
  22. "drupal/allowed_formats": "^2.0",
  23. "drupal/amswap": "^3",
  24. "drupal/audiofield": "1.x-dev@dev",
  25. "drupal/auto_entitylabel": "^3.0",
  26. "drupal/base_field_override_ui": "^1.1",
  27. "drupal/cer": "^5.0@beta",
  28. "drupal/conditional_fields": "^4.0@alpha",
  29. "drupal/config_pages": "^2.14",
  30. "drupal/core-composer-scaffold": "^9",
  31. "drupal/core-project-message": "^9",
  32. "drupal/core-recommended": "^9",
  33. "drupal/entity_limit": "^2.0@alpha",
  34. "drupal/epp": "^1.5",
  35. "drupal/field_hidden": "^2.0",
  36. "drupal/flexible_permissions": "@beta",
  37. "drupal/genpass": "^1.1",
  38. "drupal/graphql": "4.x-dev@dev",
  39. "drupal/group": "3.0.x-dev@dev",
  40. "drupal/hide_revision_field": "^2.2",
  41. "drupal/mail_login": "^2.6",
  42. "drupal/manage_display": "^3.0@RC",
  43. "drupal/paragraphs": "^1.15",
  44. "drupal/paragraphs_modal_edit": "^1.1",
  45. "drupal/readonly_field_widget": "^1.5",
  46. "drupal/regcode": "^1.1",
  47. "drupal/restui": "^1.21",
  48. "drupal/role_delegation": "^1.2",
  49. "drupal/structure_sync": "^2.0",
  50. "drupal/terms_of_use": "^2.3",
  51. "drupal/typed_data": "1.x-dev@dev",
  52. "drupal/views_ef_fieldset": "^1.5",
  53. "drupal/workflow": "^1.7",
  54. "wikimedia/composer-merge-plugin": "^2.0"
  55. },
  56. "conflict": {
  57. "drupal/drupal": "*"
  58. },
  59. "minimum-stability": "stable",
  60. "prefer-stable": true,
  61. "config": {
  62. "allow-plugins": {
  63. "composer/installers": true,
  64. "drupal/core-composer-scaffold": true,
  65. "drupal/core-project-message": true,
  66. "dealerdirect/phpcodesniffer-composer-installer": true,
  67. "wikimedia/composer-merge-plugin": true,
  68. "cweagans/composer-patches": true,
  69. "drupal/console-extend-plugin": true
  70. },
  71. "sort-packages": true
  72. },
  73. "extra": {
  74. "drupal-scaffold": {
  75. "locations": {
  76. "web-root": "web/"
  77. }
  78. },
  79. "installer-paths": {
  80. "web/core": [
  81. "type:drupal-core"
  82. ],
  83. "web/libraries/{$name}": [
  84. "type:drupal-library"
  85. ],
  86. "web/modules/contrib/{$name}": [
  87. "type:drupal-module"
  88. ],
  89. "web/profiles/contrib/{$name}": [
  90. "type:drupal-profile"
  91. ],
  92. "web/themes/contrib/{$name}": [
  93. "type:drupal-theme"
  94. ],
  95. "drush/Commands/contrib/{$name}": [
  96. "type:drupal-drush"
  97. ],
  98. "web/modules/custom/{$name}": [
  99. "type:drupal-custom-module"
  100. ],
  101. "web/profiles/custom/{$name}": [
  102. "type:drupal-custom-profile"
  103. ],
  104. "web/themes/custom/{$name}": [
  105. "type:drupal-custom-theme"
  106. ]
  107. },
  108. "drupal-core-project-message": {
  109. "include-keys": [
  110. "homepage",
  111. "support"
  112. ],
  113. "post-create-project-cmd-message": [
  114. "<bg=blue;fg=white> </>",
  115. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  116. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  117. "<bg=blue;fg=white> </>",
  118. "",
  119. "<bg=yellow;fg=black>Next steps</>:",
  120. " * Install the site: https://www.drupal.org/docs/8/install",
  121. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  122. " * Get support: https://www.drupal.org/support",
  123. " * Get involved with the Drupal community:",
  124. " https://www.drupal.org/getting-involved",
  125. " * Remove the plugin that prints this message:",
  126. " composer remove drupal/core-project-message"
  127. ]
  128. },
  129. "merge-plugin": {
  130. "include": [
  131. "web/profiles/d8-starterkit-profile/composer.json"
  132. ],
  133. "recurse": true,
  134. "replace": false,
  135. "merge-extra": true
  136. },
  137. "disabled patches": {
  138. "drupal/core": {
  139. "Apply formatters and widgets to User base fields 'name' and 'email' https://www.drupal.org/project/drupal/issues/2227381": "https://www.drupal.org/files/issues/2022-01-28/2227381-91.patch"
  140. }
  141. },
  142. "patches": {
  143. "drupal/paragraphs": {
  144. "Skip saving empty paragraphs for certain types https://www.drupal.org/project/paragraphs/issues/2877695" : "https://www.drupal.org/files/issues/2022-11-10/skip_saving_empty_paragraphs-2877695-43.patch"
  145. },
  146. "drupal/email_registration": {
  147. "Allow authentication via mail and password over RPC https://www.drupal.org/project/email_registration/issues/2856542": "https://www.drupal.org/files/issues/2021-06-11/2856542-13.patch"
  148. },
  149. "drupal/group": {
  150. "Empty page when trying to create group node https://www.drupal.org/project/group/issues/2842630": "https://www.drupal.org/files/issues/2022-09-02/group-2842630-40-v3.patch"
  151. }
  152. },
  153. "oldpatches": {
  154. "drupal/graphql": {
  155. "invalid translation language https://github.com/drupal-graphql/graphql/pull/1176": "./patches/graphql-fix-invalid-translation-language-dev.patch"
  156. }
  157. }
  158. }
  159. }