composer.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "name": "drupal-composer/drupal-project",
  3. "description": "Project template for Drupal 8 projects with composer",
  4. "type": "project",
  5. "license": "GPL-2.0-or-later",
  6. "authors": [
  7. {
  8. "name": "",
  9. "role": ""
  10. }
  11. ],
  12. "repositories": [
  13. {
  14. "type": "composer",
  15. "url": "https://packages.drupal.org/8"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.6",
  20. "composer/installers": "^1.2",
  21. "cweagans/composer-patches": "^1.6.5",
  22. "drupal-composer/drupal-scaffold": "^2.5",
  23. "drupal/amswap": "^2.0",
  24. "drupal/commerce": "^2.12",
  25. "drupal/commerce_license": "^2.0@alpha",
  26. "drupal/commerce_migrate": "^2.0",
  27. "drupal/commerce_monetico": "^1.0",
  28. "drupal/commerce_pricelist": "2.x-dev",
  29. "drupal/commerce_recurring": "1.x-dev",
  30. "drupal/commerce_variation_cart_form": "1.x-dev",
  31. "drupal/computed_field": "^2.0@beta",
  32. "drupal/config_split": "^1.4",
  33. "drupal/console": "^1.0.2",
  34. "drupal/core": "8.7.*",
  35. "drupal/entity_clone": "^1.0",
  36. "drupal/genpass": "1.x-dev",
  37. "drupal/login_history": "1.x-dev",
  38. "drupal/mailgun": "1.x-dev",
  39. "drupal/mailsystem": "^4.1",
  40. "drupal/migrate_plus": "4.x-dev",
  41. "drupal/migrate_tools": "4.x-dev",
  42. "drupal/mimemail": "1.x-dev",
  43. "drupal/restui": "^1.16",
  44. "drupal/select_translation": "1.x-dev",
  45. "drupal/simplenews": "1.x-dev",
  46. "drupal/telephone_formatter": "^1.0@beta",
  47. "drupal/telephone_validation": "^2.1",
  48. "drupal/ultimate_cron": "2.x-dev",
  49. "drupal/views_conditional": "1.x-dev",
  50. "drush/drush": "^9.0.0",
  51. "vlucas/phpdotenv": "^2.4",
  52. "webflo/drupal-finder": "^1.0.0",
  53. "webmozart/path-util": "^2.3",
  54. "wikimedia/composer-merge-plugin": "^1.4",
  55. "zaporylie/composer-drupal-optimizations": "^1.0"
  56. },
  57. "require-dev": {
  58. "webflo/drupal-core-require-dev": "^8.6.0"
  59. },
  60. "conflict": {
  61. "drupal/drupal": "*"
  62. },
  63. "minimum-stability": "dev",
  64. "prefer-stable": true,
  65. "config": {
  66. "sort-packages": true
  67. },
  68. "autoload": {
  69. "classmap": [
  70. "scripts/composer/ScriptHandler.php"
  71. ],
  72. "files": ["load.environment.php"]
  73. },
  74. "scripts": {
  75. "pre-install-cmd": [
  76. "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
  77. ],
  78. "pre-update-cmd": [
  79. "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
  80. ],
  81. "post-install-cmd": [
  82. "DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
  83. ],
  84. "post-update-cmd": [
  85. "DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
  86. ]
  87. },
  88. "extra": {
  89. "composer-exit-on-patch-failure": true,
  90. "patchLevel": {
  91. "drupal/core": "-p2"
  92. },
  93. "merge-plugin": {
  94. "include": [
  95. "web/profiles/d8-starterkit-profile/composer.json"
  96. ],
  97. "recurse": true,
  98. "replace": false,
  99. "merge-extra": true
  100. },
  101. "installer-paths": {
  102. "web/core": ["type:drupal-core"],
  103. "web/libraries/{$name}": ["type:drupal-library"],
  104. "web/modules/contrib/{$name}": ["type:drupal-module"],
  105. "web/profiles/contrib/{$name}": ["type:drupal-profile"],
  106. "web/themes/contrib/{$name}": ["type:drupal-theme"],
  107. "drush/Commands/{$name}": ["type:drupal-drush"]
  108. },
  109. "patches": {
  110. "drupal/core": {
  111. "migrate_drupal getsetting on null" : "https://www.drupal.org/files/issues/2019-02-13/migrate_drupal-getsetting_on_null.patch"
  112. },
  113. "drupal/core": {
  114. "ViewsEntitySchemaSubscriber should not make an entity update fail if a view cannot be resaved" : "https://www.drupal.org/files/issues/2019-05-06/3052492-11.patch"
  115. },
  116. "drupal/migrate_tools": {
  117. "The --limit option does not accept a value.": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
  118. }
  119. },
  120. "drupal-scaffold": {
  121. "initial": {
  122. ".editorconfig": "../.editorconfig",
  123. ".gitattributes": "../.gitattributes"
  124. }
  125. }
  126. }
  127. }