composer.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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": "^1.8",
  20. "drupal/address_map_link": "^1.0",
  21. "drupal/audiofield": "^1.9",
  22. "drupal/backup_migrate": "^4.1",
  23. "drupal/core-composer-scaffold": "^8.8",
  24. "drupal/core-recommended": "^8.8",
  25. "drupal/entity_browser_enhanced": "^1.0",
  26. "drupal/field_group": "^3.0",
  27. "drupal/field_pager": "^2.0@beta",
  28. "drupal/field_token_value": "^1.0",
  29. "drupal/geocoder": "^3.7",
  30. "drupal/geofield": "^1.15",
  31. "drupal/geofield_map": "^2.66",
  32. "drupal/geolocation": "^3.2",
  33. "drupal/leaflet": "^1.41",
  34. "drupal/linkit": "^4.3",
  35. "drupal/matomo": "^1.11",
  36. "drupal/mediteran": "^1.10",
  37. "drupal/metatag": "^1.13",
  38. "drupal/paragraphs": "^1.12",
  39. "drupal/pathauto": "^1.8",
  40. "drupal/redirect": "^1.6",
  41. "drupal/redirect_after_login": "^2.6",
  42. "drupal/redis": "^1.4",
  43. "drupal/schema_metatag": "^1.5",
  44. "drupal/search_api": "^1.18",
  45. "drupal/site_settings": "^1.19",
  46. "drupal/subpathauto": "^1.1",
  47. "drupal/tacjs": "^3.9",
  48. "drupal/time_range": "^8.1",
  49. "drupal/transliterate_filenames": "^1.4",
  50. "drupal/varbase_total_control": "^6.11",
  51. "drupal/video_embed_field": "^2.4",
  52. "drupal/views_infinite_scroll": "^1.7",
  53. "drupal/views_url_path_arguments": "^1.1",
  54. "drush/drush": "^10.2",
  55. "geocoder-php/chain-provider": "^4.2",
  56. "geocoder-php/google-maps-provider": "^4.5",
  57. "sierrafayad/osm-pbf": "^1.0",
  58. "twbs/bootstrap": "4.5.0"
  59. },
  60. "conflict": {
  61. "drupal/drupal": "*"
  62. },
  63. "minimum-stability": "dev",
  64. "prefer-stable": true,
  65. "config": {
  66. "sort-packages": true
  67. },
  68. "extra": {
  69. "drupal-scaffold": {
  70. "locations": {
  71. "web-root": "web/"
  72. }
  73. },
  74. "installer-paths": {
  75. "web/core": [
  76. "type:drupal-core"
  77. ],
  78. "web/libraries/{$name}": [
  79. "type:drupal-library"
  80. ],
  81. "web/modules/contrib/{$name}": [
  82. "type:drupal-module"
  83. ],
  84. "web/profiles/contrib/{$name}": [
  85. "type:drupal-profile"
  86. ],
  87. "web/themes/contrib/{$name}": [
  88. "type:drupal-theme"
  89. ],
  90. "drush/Commands/contrib/{$name}": [
  91. "type:drupal-drush"
  92. ],
  93. "web/modules/custom/{$name}": [
  94. "type:drupal-custom-module"
  95. ],
  96. "web/themes/custom/{$name}": [
  97. "type:drupal-custom-theme"
  98. ]
  99. },
  100. "drupal-core-project-message": {
  101. "include-keys": [
  102. "homepage",
  103. "support"
  104. ],
  105. "post-create-project-cmd-message": [
  106. "<bg=blue;fg=white> </>",
  107. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  108. "<bg=blue;fg=white> from the drupal/recommended-project template! </>",
  109. "<bg=blue;fg=white> </>",
  110. "",
  111. "<bg=yellow;fg=black>Next steps</>:",
  112. " * Install the site: https://www.drupal.org/docs/8/install",
  113. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  114. " * Get support: https://www.drupal.org/support",
  115. " * Get involved with the Drupal community:",
  116. " https://www.drupal.org/getting-involved",
  117. " * Remove the plugin that prints this message:",
  118. " composer remove drupal/core-project-message"
  119. ]
  120. }
  121. }
  122. }