composer.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "description": "Package Repository Website",
  3. "keywords": ["package", "composer"],
  4. "homepage": "http://packagist.org/",
  5. "type": "library",
  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. },
  26. "require": {
  27. "php": ">=5.6",
  28. "symfony/symfony": "^2.8",
  29. "doctrine/orm": "^2.4",
  30. "doctrine/doctrine-bundle": "^1.2",
  31. "twig/extensions": "^1.0",
  32. "symfony/swiftmailer-bundle": "^2.3",
  33. "symfony/monolog-bundle": "^2.4",
  34. "sensio/distribution-bundle": "^5.0",
  35. "sensio/framework-extra-bundle": "^3.0",
  36. "sensio/generator-bundle": "^3.0",
  37. "jms/security-extra-bundle": "^1.5",
  38. "jms/di-extra-bundle": "^1.4",
  39. "composer/composer": "^1.0@dev",
  40. "friendsofsymfony/user-bundle": "^2.0@dev",
  41. "hwi/oauth-bundle": "^0.4",
  42. "nelmio/solarium-bundle": "^1.0",
  43. "nelmio/security-bundle": "^1.0",
  44. "predis/predis": "^1.0",
  45. "snc/redis-bundle": "^1.1",
  46. "white-october/pagerfanta-bundle": "^1.0",
  47. "zendframework/zend-feed": "^2.0",
  48. "zendframework/zend-servicemanager": "^2.0",
  49. "zendframework/zend-uri": "^2.0",
  50. "zendframework/zend-version": "^2.0",
  51. "pagerfanta/pagerfanta": "^1.0",
  52. "knplabs/knp-menu-bundle": "^2.1",
  53. "ezyang/htmlpurifier": "^4.6",
  54. "nelmio/cors-bundle": "^1.4"
  55. },
  56. "_": ["fos user bundle 2.0.0 tag needed"],
  57. "require-dev": {
  58. "symfony/phpunit-bridge": "^2.7 || ^3.0",
  59. "phpunit/phpunit": "^5.0"
  60. },
  61. "scripts": {
  62. "post-install-cmd": [
  63. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  64. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  65. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  66. ],
  67. "post-update-cmd": [
  68. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  69. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  70. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  71. ]
  72. },
  73. "extra": {
  74. "symfony-app-dir": "app",
  75. "symfony-web-dir": "web"
  76. }
  77. }