composer.json 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. "type": "composer",
  19. "url": "https://asset-packagist.org"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.6",
  24. "composer/installers": "^1.7",
  25. "cweagans/composer-patches": "^1.6.5",
  26. "drupal/addtoany": "^1.4",
  27. "drupal/admin_toolbar": "^2.3",
  28. "drupal/adminimal_theme": "^1.4",
  29. "drupal/audiofield": "^1.13",
  30. "drupal/autologout": "^1.3",
  31. "drupal/basic": "^2.1",
  32. "drupal/better_messages": "^2.0@alpha",
  33. "drupal/bulkdelete": "1.x-dev",
  34. "drupal/color_field": "^2.4",
  35. "drupal/config_devel": "^1.4",
  36. "drupal/config_filter": "^1.6",
  37. "drupal/config_ignore": "^3.3",
  38. "drupal/config_update": "^1.7",
  39. "drupal/context": "^4.1",
  40. "drupal/core-composer-scaffold": "^9.1.0",
  41. "drupal/core-project-message": "^9.1.0",
  42. "drupal/core-recommended": "^9.1.0",
  43. "drupal/ctools": "^3.4",
  44. "drupal/date_range_formatter": "^4.0",
  45. "drupal/devel": "^4.0",
  46. "drupal/domain": "^1.0@alpha",
  47. "drupal/domain_site_settings": "^1.6",
  48. "drupal/email_registration": "^1.1",
  49. "drupal/entity": "^1.3",
  50. "drupal/field_group": "^3.1",
  51. "drupal/filefield_sources": "^1.0@alpha",
  52. "drupal/filter_perms": "^1.0@alpha",
  53. "drupal/honeypot": "^2.0",
  54. "drupal/jquery_ui_draggable": "^1.2",
  55. "drupal/jquery_ui_droppable": "^1.2",
  56. "drupal/jquery_ui_sortable": "^1.1",
  57. "drupal/linkit": "^6.0@beta",
  58. "drupal/login_emailusername": "^2.1",
  59. "drupal/maillog": "^1.0@beta",
  60. "drupal/menu_admin_per_menu": "1.1",
  61. "drupal/metatag": "^1.14",
  62. "drupal/pathauto": "^1.6",
  63. "drupal/profile": "^1.0",
  64. "drupal/redirect": "^1.3",
  65. "drupal/redis": "^1.1",
  66. "drupal/restui": "^1.17",
  67. "drupal/search_api": "^1.17",
  68. "drupal/simple_sitemap": "^3.7",
  69. "drupal/synonyms": "^1.0@alpha",
  70. "drupal/translation_views": "^1.0",
  71. "drupal/upgrade_status": "^3.19",
  72. "drupal/views_bulk_edit": "^2.6",
  73. "drupal/views_bulk_operations": "^3.9",
  74. "drupal/workflow": "1.6",
  75. "drush/drush": "^10",
  76. "kint-php/kint": "^5.1",
  77. "vlucas/phpdotenv": "^2.4",
  78. "webflo/drupal-finder": "^1.0.0",
  79. "webmozart/path-util": "^2.3"
  80. },
  81. "conflict": {
  82. "drupal/drupal": "*"
  83. },
  84. "minimum-stability": "dev",
  85. "prefer-stable": true,
  86. "config": {
  87. "sort-packages": true,
  88. "allow-plugins": {
  89. "composer/installers": true,
  90. "cweagans/composer-patches": true,
  91. "drupal/core-composer-scaffold": true,
  92. "drupal/core-project-message": true
  93. }
  94. },
  95. "autoload": {
  96. "classmap": [
  97. "scripts/composer/ScriptHandler.php"
  98. ],
  99. "files": ["load.environment.php"]
  100. },
  101. "scripts": {
  102. "pre-install-cmd": [
  103. "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
  104. ],
  105. "pre-update-cmd": [
  106. "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
  107. ],
  108. "post-install-cmd": [
  109. "DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
  110. ],
  111. "post-update-cmd": [
  112. "DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
  113. ]
  114. },
  115. "extra": {
  116. "composer-exit-on-patch-failure": true,
  117. "patchLevel": {
  118. "drupal/core": "-p2"
  119. },
  120. "installer-paths": {
  121. "web/core": ["type:drupal-core"],
  122. "web/libraries/{$name}": ["type:drupal-library"],
  123. "web/modules/contrib/{$name}": ["type:drupal-module"],
  124. "web/profiles/contrib/{$name}": ["type:drupal-profile"],
  125. "web/themes/contrib/{$name}": ["type:drupal-theme"],
  126. "drush/Commands/{$name}": ["type:drupal-drush"]
  127. },
  128. "patches": {
  129. "drupal/login_emailusername": {
  130. "rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801" : "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
  131. },
  132. "drupal/autologout": {
  133. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214" : "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  134. },
  135. "drupal/domain": {
  136. "Drupal 8 compatibility DROP ONCE UPDATED TO 9 !! https://www.drupal.org/project/domain/issues/3342305" : "https://www.drupal.org/files/issues/2024-03-29/d8_compatibility-3342305.patch"
  137. }
  138. },
  139. "old-patches": {
  140. "drupal/domain_site_settings": {
  141. "Circular Error or Conflict with Language_Manager" : "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  142. }
  143. },
  144. "drupal-scaffold": {
  145. "initial": {
  146. ".editorconfig": "../.editorconfig",
  147. ".gitattributes": "../.gitattributes"
  148. },
  149. "allowed-packages": [
  150. "drupal/core"
  151. ],
  152. "locations": {
  153. "web-root": "./web"
  154. },
  155. "file-mapping": {
  156. "[web-root]/sites/development.services.yml": false
  157. }
  158. }
  159. }
  160. }