composer.json 4.2 KB

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