composer.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "exclude-from-classmap": [ "src/Packagist/WebBundle/Tests/" ]
  26. },
  27. "require": {
  28. "php": ">=5.6",
  29. "symfony/symfony": "^2.8",
  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": "^2.3",
  35. "symfony/monolog-bundle": "^2.4",
  36. "sensio/distribution-bundle": "^5.0",
  37. "sensio/framework-extra-bundle": "^3.0",
  38. "sensio/generator-bundle": "^3.0",
  39. "jms/security-extra-bundle": "^1.5",
  40. "jms/di-extra-bundle": "^1.4",
  41. "composer/composer": "^1.3@dev",
  42. "friendsofsymfony/user-bundle": "^2.0@dev",
  43. "hwi/oauth-bundle": "^0.4",
  44. "nelmio/solarium-bundle": "^1.0",
  45. "nelmio/security-bundle": "^1.0",
  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. "zendframework/zend-version": "^2.0",
  53. "pagerfanta/pagerfanta": "^1.0",
  54. "knplabs/knp-menu-bundle": "^2.1",
  55. "ezyang/htmlpurifier": "^4.6",
  56. "nelmio/cors-bundle": "^1.4",
  57. "cebe/markdown": "^1.1",
  58. "algolia/algoliasearch-client-php": "^1.18"
  59. },
  60. "_comment": ["fos user bundle 2.0.0 tag needed"],
  61. "require-dev": {
  62. "symfony/phpunit-bridge": "^2.7 || ^3.0",
  63. "phpunit/phpunit": "^5.0"
  64. },
  65. "scripts": {
  66. "post-install-cmd": [
  67. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  68. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  69. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  70. ],
  71. "post-update-cmd": [
  72. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  73. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  74. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
  75. ]
  76. },
  77. "extra": {
  78. "symfony-app-dir": "app",
  79. "symfony-web-dir": "web"
  80. }
  81. }