composer.json 4.0 KB

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