composer.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "minimum-stability": "dev",
  3. "description": "Package Repository Website",
  4. "keywords": ["package", "composer"],
  5. "homepage": "http://packagist.org/",
  6. "type": "library",
  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-0": { "Packagist": "src/" }
  25. },
  26. "require": {
  27. "php": ">=5.3.3",
  28. "symfony/symfony": "2.1.*",
  29. "doctrine/orm": ">=2.2.3,<2.4-dev",
  30. "doctrine/doctrine-bundle": "1.0.*",
  31. "twig/extensions": "1.0.*",
  32. "symfony/assetic-bundle": "2.1.*",
  33. "symfony/swiftmailer-bundle": "2.1.*",
  34. "symfony/monolog-bundle": "2.1.*",
  35. "sensio/distribution-bundle": "2.1.*",
  36. "sensio/framework-extra-bundle": "2.1.*",
  37. "sensio/generator-bundle": "2.1.*",
  38. "jms/security-extra-bundle": "1.2.*",
  39. "jms/di-extra-bundle": "1.1.*",
  40. "composer/composer": "dev-master",
  41. "friendsofsymfony/user-bundle": "2.0.*",
  42. "hwi/oauth-bundle": "dev-master",
  43. "nelmio/solarium-bundle": "dev-master",
  44. "predis/predis": "0.7.*",
  45. "snc/redis-bundle": "dev-master",
  46. "white-october/pagerfanta-bundle": "dev-master",
  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. },
  52. "scripts": {
  53. "post-install-cmd": [
  54. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  55. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  56. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  57. ],
  58. "post-update-cmd": [
  59. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  60. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  61. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  62. ]
  63. },
  64. "extra": {
  65. "symfony-app-dir": "app",
  66. "symfony-web-dir": "web"
  67. },
  68. "repositories": [
  69. {
  70. "type": "composer",
  71. "url": "http://packages.zendframework.com/"
  72. }
  73. ]
  74. }