Advertisement
Guest User

Untitled

a guest
May 21st, 2021
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. {
  2. "name": "drupal/legacy-project",
  3. "description": "Project template for Drupal 8 projects with composer following drupal/drupal layout",
  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/core-composer-scaffold": "^8.8",
  20. "drupal/core-project-message": "^8.8",
  21. "drupal/core-recommended": "^8.8",
  22. "drupal/core-vendor-hardening": "^8.8"
  23. },
  24. "conflict": {
  25. "drupal/drupal": "*"
  26. },
  27. "minimum-stability": "dev",
  28. "prefer-stable": true,
  29. "config": {
  30. "sort-packages": true
  31. },
  32. "extra": {
  33. "drupal-scaffold": {
  34. "locations": {
  35. "web-root": "./"
  36. }
  37. },
  38. "installer-paths": {
  39. "core": [
  40. "type:drupal-core"
  41. ],
  42. "libraries/{$name}": [
  43. "type:drupal-library"
  44. ],
  45. "modules/contrib/{$name}": [
  46. "type:drupal-module"
  47. ],
  48. "profiles/contrib/{$name}": [
  49. "type:drupal-profile"
  50. ],
  51. "themes/contrib/{$name}": [
  52. "type:drupal-theme"
  53. ],
  54. "drush/Commands/contrib/{$name}": [
  55. "type:drupal-drush"
  56. ],
  57. "modules/custom/{$name}": [
  58. "type:drupal-custom-module"
  59. ],
  60. "themes/custom/{$name}": [
  61. "type:drupal-custom-theme"
  62. ]
  63. },
  64. "drupal-core-project-message": {
  65. "include-keys": [
  66. "homepage",
  67. "support"
  68. ],
  69. "post-create-project-cmd-message": [
  70. "<bg=blue;fg=white> </>",
  71. "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
  72. "<bg=blue;fg=white> from the drupal/legacy-project template! </>",
  73. "<bg=blue;fg=white> </>",
  74. "",
  75. "<bg=yellow;fg=black>Next steps</>:",
  76. " * Install the site: https://www.drupal.org/docs/8/install",
  77. " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
  78. " * Get support: https://www.drupal.org/support",
  79. " * Get involved with the Drupal community:",
  80. " https://www.drupal.org/getting-involved",
  81. " * Remove the plugin that prints this message:",
  82. " composer remove drupal/core-project-message"
  83. ]
  84. }
  85. }
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement