composer.json 2.9 KB

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