composer.json 4.2 KB

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