composer.json 4.7 KB

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