composer.json 4.1 KB

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