composer.json 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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.x-dev@dev",
  20. "drupal/administerusersbyrole": "3.x-dev@dev",
  21. "drupal/better_exposed_filters": "^5.0@beta",
  22. "drupal/config_ignore": "^2.3",
  23. "drupal/core-composer-scaffold": "^9.1",
  24. "drupal/core-project-message": "^9.1",
  25. "drupal/core-recommended": "^9.1",
  26. "drupal/geocoder": "^3.20",
  27. "drupal/geofield": "^1.22",
  28. "drupal/imce": "^2.4",
  29. "drupal/leaflet": "^2.1",
  30. "drupal/leaflet_more_maps": "^2.1",
  31. "drupal/leaflet_more_markers": "^1.1",
  32. "drupal/migrate_devel": "2.x-dev@dev",
  33. "drupal/migrate_plus": "^5.1",
  34. "drupal/migrate_tools": "5.x-dev@dev",
  35. "drupal/page_manager": "4.x-dev@dev",
  36. "drupal/panelizer": "^4.4",
  37. "drupal/panels": "^4.6",
  38. "drupal/paragraphs": "1.x-dev@dev",
  39. "drupal/role_delegation": "^1.1",
  40. "drupal/selective_better_exposed_filters": "2.x-dev@dev",
  41. "drupal/smart_date": "^3.1",
  42. "geocoder-php/google-maps-provider": "^4.6",
  43. "geocoder-php/mapquest-provider": "^4.2",
  44. "wikimedia/composer-merge-plugin": "^2.0"
  45. },
  46. "conflict": {
  47. "drupal/drupal": "*"
  48. },
  49. "minimum-stability": "stable",
  50. "prefer-stable": true,
  51. "config": {
  52. "sort-packages": true
  53. },
  54. "extra": {
  55. "drupal-scaffold": {
  56. "locations": {
  57. "web-root": "web/"
  58. }
  59. },
  60. "installer-paths": {
  61. "web/core": [
  62. "type:drupal-core"
  63. ],
  64. "web/libraries/{$name}": [
  65. "type:drupal-library"
  66. ],
  67. "web/modules/contrib/{$name}": [
  68. "type:drupal-module"
  69. ],
  70. "web/profiles/contrib/{$name}": [
  71. "type:drupal-profile"
  72. ],
  73. "web/themes/contrib/{$name}": [
  74. "type:drupal-theme"
  75. ],
  76. "drush/Commands/contrib/{$name}": [
  77. "type:drupal-drush"
  78. ],
  79. "web/modules/custom/{$name}": [
  80. "type:drupal-custom-module"
  81. ],
  82. "web/profiles/custom/{$name}": [
  83. "type:drupal-custom-profile"
  84. ],
  85. "web/themes/custom/{$name}": [
  86. "type:drupal-custom-theme"
  87. ]
  88. },
  89. "drupal-core-project-message": {
  90. "include-keys": [
  91. "homepage",
  92. "support"
  93. ],
  94. "post-create-project-cmd-message": [
  95. "<bg=blue;fg=white> </>",
  96. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  97. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  98. "<bg=blue;fg=white> </>",
  99. "",
  100. "<bg=yellow;fg=black>Next steps</>:",
  101. " * Install the site: https://www.drupal.org/docs/8/install",
  102. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  103. " * Get support: https://www.drupal.org/support",
  104. " * Get involved with the Drupal community:",
  105. " https://www.drupal.org/getting-involved",
  106. " * Remove the plugin that prints this message:",
  107. " composer remove drupal/core-project-message"
  108. ]
  109. },
  110. "merge-plugin": {
  111. "include": [
  112. "web/profiles/d8-starterkit-profile/composer.json"
  113. ],
  114. "recurse": true,
  115. "replace": false,
  116. "merge-extra": true
  117. },
  118. "patches": {
  119. "drupal/jquery_ui_touch_punch": {
  120. "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"
  121. },
  122. "drupal/core": {
  123. "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",
  124. "Add Views EntityReference filter to be available for all entity reference fields https://www.drupal.org/project/drupal/issues/2429699" : "https://www.drupal.org/files/issues/2021-03-06/2429699-389.patch"
  125. }
  126. }
  127. }
  128. }