composer.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.x-dev@dev",
  20. "drupal/config_ignore": "^2.3",
  21. "drupal/core-composer-scaffold": "^9.1",
  22. "drupal/core-project-message": "^9.1",
  23. "drupal/core-recommended": "^9.1",
  24. "drupal/imce": "^2.4",
  25. "drupal/migrate_devel": "2.x-dev@dev",
  26. "drupal/migrate_plus": "^5.1",
  27. "drupal/migrate_tools": "5.x-dev@dev",
  28. "drupal/page_manager": "4.x-dev@dev",
  29. "drupal/panelizer": "^4.4",
  30. "drupal/panels": "^4.6",
  31. "drupal/paragraphs": "1.x-dev@dev",
  32. "drupal/role_delegation": "^1.1",
  33. "drupal/smart_date": "^3.1",
  34. "wikimedia/composer-merge-plugin": "^2.0"
  35. },
  36. "conflict": {
  37. "drupal/drupal": "*"
  38. },
  39. "minimum-stability": "stable",
  40. "prefer-stable": true,
  41. "config": {
  42. "sort-packages": true
  43. },
  44. "extra": {
  45. "drupal-scaffold": {
  46. "locations": {
  47. "web-root": "web/"
  48. }
  49. },
  50. "installer-paths": {
  51. "web/core": [
  52. "type:drupal-core"
  53. ],
  54. "web/libraries/{$name}": [
  55. "type:drupal-library"
  56. ],
  57. "web/modules/contrib/{$name}": [
  58. "type:drupal-module"
  59. ],
  60. "web/profiles/contrib/{$name}": [
  61. "type:drupal-profile"
  62. ],
  63. "web/themes/contrib/{$name}": [
  64. "type:drupal-theme"
  65. ],
  66. "drush/Commands/contrib/{$name}": [
  67. "type:drupal-drush"
  68. ],
  69. "web/modules/custom/{$name}": [
  70. "type:drupal-custom-module"
  71. ],
  72. "web/profiles/custom/{$name}": [
  73. "type:drupal-custom-profile"
  74. ],
  75. "web/themes/custom/{$name}": [
  76. "type:drupal-custom-theme"
  77. ]
  78. },
  79. "drupal-core-project-message": {
  80. "include-keys": [
  81. "homepage",
  82. "support"
  83. ],
  84. "post-create-project-cmd-message": [
  85. "<bg=blue;fg=white> </>",
  86. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  87. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  88. "<bg=blue;fg=white> </>",
  89. "",
  90. "<bg=yellow;fg=black>Next steps</>:",
  91. " * Install the site: https://www.drupal.org/docs/8/install",
  92. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  93. " * Get support: https://www.drupal.org/support",
  94. " * Get involved with the Drupal community:",
  95. " https://www.drupal.org/getting-involved",
  96. " * Remove the plugin that prints this message:",
  97. " composer remove drupal/core-project-message"
  98. ]
  99. },
  100. "merge-plugin": {
  101. "include": [
  102. "web/profiles/d8-starterkit-profile/composer.json"
  103. ],
  104. "recurse": true,
  105. "replace": false,
  106. "merge-extra": true
  107. },
  108. "patches": {
  109. "drupal/jquery_ui_touch_punch": {
  110. "jQuery UI Touch Punch library https://www.drupal.org/project/jquery_ui_touch_punch/issues/3159222":"https://www.drupal.org/files/issues/2021-02-26/jquery_ui_touch_punch.patch"
  111. },
  112. "drupal/core": {
  113. "Call to a member function getSetting() on null migrate_drupal https://www.drupal.org/project/drupal/issues/2984460": "https://www.drupal.org/files/issues/2020-04-06/2984460-3.patch"
  114. }
  115. }
  116. }
  117. }