composer.json 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "composer/packagist",
  3. "description": "Package Repository Website",
  4. "keywords": ["package", "composer"],
  5. "homepage": "https://packagist.org/",
  6. "type": "project",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nils Adermann",
  11. "email": "naderman@naderman.de",
  12. "homepage": "http://www.naderman.de"
  13. },
  14. {
  15. "name": "Jordi Boggiano",
  16. "email": "j.boggiano@seld.be",
  17. "homepage": "http://seld.be"
  18. }
  19. ],
  20. "support": {
  21. "email": "contact@packagist.org"
  22. },
  23. "autoload": {
  24. "psr-4": { "Packagist\\": "src/Packagist/" },
  25. "classmap": [ "app/AppKernel.php", "app/AppCache.php" ],
  26. "exclude-from-classmap": [ "src/Packagist/WebBundle/Tests/" ]
  27. },
  28. "require": {
  29. "php": ">=7.3",
  30. "symfony/symfony": "^3.4",
  31. "doctrine/orm": "^2.4",
  32. "doctrine/doctrine-bundle": "^1.2",
  33. "doctrine/doctrine-cache-bundle": "^1.3",
  34. "twig/extensions": "^1.0",
  35. "symfony/swiftmailer-bundle": "^3.0",
  36. "symfony/monolog-bundle": "^3.1",
  37. "sensio/distribution-bundle": "^5.0",
  38. "sensio/framework-extra-bundle": "^5.0",
  39. "sensio/generator-bundle": "^3.0",
  40. "composer/composer": "^1.10@dev",
  41. "friendsofsymfony/user-bundle": "^2.0",
  42. "hwi/oauth-bundle": "^0.6",
  43. "scheb/two-factor-bundle": "^4.7",
  44. "endroid/qr-code-bundle": "^3.3",
  45. "nelmio/security-bundle": "^2.4",
  46. "predis/predis": "^1.0",
  47. "snc/redis-bundle": "^2.0",
  48. "white-october/pagerfanta-bundle": "^1.0",
  49. "zendframework/zend-feed": "^2.0",
  50. "zendframework/zend-servicemanager": "^2.0",
  51. "zendframework/zend-uri": "^2.0",
  52. "pagerfanta/pagerfanta": "^2.0",
  53. "knplabs/knp-menu-bundle": "^2.1",
  54. "ezyang/htmlpurifier": "^4.6",
  55. "nelmio/cors-bundle": "^1.4",
  56. "cebe/markdown": "^1.1",
  57. "algolia/algoliasearch-client-php": "^2.0",
  58. "seld/signal-handler": "^1.1",
  59. "php-http/httplug-bundle": "^1.11",
  60. "php-http/guzzle6-adapter": "^1.1",
  61. "zendframework/zenddiagnostics": "^1.4",
  62. "graze/dog-statsd": "^0.4.2",
  63. "incenteev/composer-parameter-handler": "^2.1"
  64. },
  65. "require-dev": {
  66. "symfony/phpunit-bridge": "^4.2",
  67. "phpunit/phpunit": "^8.0"
  68. },
  69. "scripts": {
  70. "symfony-scripts": [
  71. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  72. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  73. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  74. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  75. ],
  76. "post-install-cmd": [
  77. "@symfony-scripts"
  78. ],
  79. "post-update-cmd": [
  80. "@symfony-scripts"
  81. ]
  82. },
  83. "extra": {
  84. "symfony-app-dir": "app",
  85. "symfony-web-dir": "web",
  86. "symfony-assets-install": "relative",
  87. "incenteev-parameters": {
  88. "file": "app/config/parameters.yml"
  89. }
  90. },
  91. "config": {
  92. "platform": {
  93. "php": "7.3.16"
  94. }
  95. }
  96. }