composer.json 4.1 KB

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