composer.json 3.5 KB

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