composer.json 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "name": "drupal/recommended-project",
  3. "description": "Project template for Drupal 8 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.2",
  19. "drupal/address": "^2.0",
  20. "drupal/address_map_link": "^1.4",
  21. "drupal/admin_toolbar": "^3.4",
  22. "drupal/adminimal_theme": "^1.7",
  23. "drupal/audiofield": "^1.9",
  24. "drupal/backup_migrate": "^5.0",
  25. "drupal/charts": "^5.0",
  26. "drupal/core-composer-scaffold": "^10",
  27. "drupal/core-project-message": "^10",
  28. "drupal/core-recommended": "^10",
  29. "drupal/ctools": "^4.0",
  30. "drupal/entity_browser": "^2.10",
  31. "drupal/entity_browser_enhanced": "^2.0",
  32. "drupal/entity_reference_revisions": "^1.11",
  33. "drupal/field_group": "^3.0",
  34. "drupal/field_pager": "^2.0@beta",
  35. "drupal/field_token_value": "^3.0",
  36. "drupal/geolocation": "^3.2",
  37. "drupal/jquery_ui": "^1.6",
  38. "drupal/jquery_ui_draggable": "^2.0",
  39. "drupal/jquery_ui_droppable": "^2.0",
  40. "drupal/linkit": "^6.0",
  41. "drupal/masonry": "^4.0",
  42. "drupal/matomo": "^1.11",
  43. "drupal/mediteran": "^1.10",
  44. "drupal/metatag": "^1.13",
  45. "drupal/page_manager": "^4.0",
  46. "drupal/panels": "^4.7",
  47. "drupal/paragraphs": "^1.12",
  48. "drupal/pathauto": "^1.8",
  49. "drupal/redirect": "^1.6",
  50. "drupal/redirect_after_login": "^2.6",
  51. "drupal/redis": "^1.4",
  52. "drupal/schema_metatag": "^2.5",
  53. "drupal/search_api": "^1.18",
  54. "drupal/site_settings": "^1.19",
  55. "drupal/subpathauto": "^1.1",
  56. "drupal/tacjs": "^6.4",
  57. "drupal/time_range": "^9.0",
  58. "drupal/token": "^1.13",
  59. "drupal/video_embed_field": "^2.4",
  60. "drupal/views_url_path_arguments": "^1.1",
  61. "drush/drush": "^12",
  62. "twbs/bootstrap": "4.5.0"
  63. },
  64. "conflict": {
  65. "drupal/drupal": "*"
  66. },
  67. "minimum-stability": "dev",
  68. "prefer-stable": true,
  69. "config": {
  70. "sort-packages": true,
  71. "allow-plugins": {
  72. "composer/installers": true,
  73. "drupal/core-composer-scaffold": true,
  74. "cweagans/composer-patches": true,
  75. "oomphinc/composer-installers-extender": true,
  76. "drupal/core-project-message": true
  77. }
  78. },
  79. "extra": {
  80. "drupal-scaffold": {
  81. "locations": {
  82. "web-root": "web/"
  83. }
  84. },
  85. "installer-paths": {
  86. "web/core": [
  87. "type:drupal-core"
  88. ],
  89. "web/libraries/{$name}": [
  90. "type:drupal-library"
  91. ],
  92. "web/modules/contrib/{$name}": [
  93. "type:drupal-module"
  94. ],
  95. "web/profiles/contrib/{$name}": [
  96. "type:drupal-profile"
  97. ],
  98. "web/themes/contrib/{$name}": [
  99. "type:drupal-theme"
  100. ],
  101. "drush/Commands/contrib/{$name}": [
  102. "type:drupal-drush"
  103. ],
  104. "web/modules/custom/{$name}": [
  105. "type:drupal-custom-module"
  106. ],
  107. "web/themes/custom/{$name}": [
  108. "type:drupal-custom-theme"
  109. ]
  110. },
  111. "drupal-core-project-message": {
  112. "include-keys": [
  113. "homepage",
  114. "support"
  115. ],
  116. "post-create-project-cmd-message": [
  117. "<bg=blue;fg=white> </>",
  118. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  119. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  120. "<bg=blue;fg=white> </>",
  121. "",
  122. "<bg=yellow;fg=black>Next steps</>:",
  123. " * Install the site: https://www.drupal.org/docs/8/install",
  124. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  125. " * Get support: https://www.drupal.org/support",
  126. " * Get involved with the Drupal community:",
  127. " https://www.drupal.org/getting-involved",
  128. " * Remove the plugin that prints this message:",
  129. " composer remove drupal/core-project-message"
  130. ]
  131. }
  132. }
  133. }