composer.json 5.0 KB

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