composer.json 4.0 KB

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