composer.json 3.3 KB

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