composer.json 3.7 KB

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