composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "symfony/framework-standard-edition",
  3. "description": "The \"Symfony Standard Edition\" distribution",
  4. "autoload": {
  5. "psr-0": { "": "src/" }
  6. },
  7. "require": {
  8. "php": ">=5.3.3",
  9. "symfony/symfony": "2.2.*",
  10. "doctrine/orm": "~2.2,>=2.2.3",
  11. "doctrine/doctrine-bundle": "1.2.*",
  12. "twig/extensions": "1.0.*",
  13. "symfony/assetic-bundle": "2.1.*",
  14. "symfony/swiftmailer-bundle": "2.2.*",
  15. "symfony/monolog-bundle": "2.2.*",
  16. "sensio/distribution-bundle": "2.2.*",
  17. "sensio/framework-extra-bundle": "2.2.*",
  18. "sensio/generator-bundle": "2.2.*",
  19. "jms/security-extra-bundle": "1.4.*",
  20. "jms/di-extra-bundle": "1.3.*"
  21. },
  22. "scripts": {
  23. "post-install-cmd": [
  24. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  25. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  26. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  27. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  28. ],
  29. "post-update-cmd": [
  30. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  31. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  32. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  33. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  34. ]
  35. },
  36. "config": {
  37. "bin-dir": "bin"
  38. },
  39. "minimum-stability": "alpha",
  40. "extra": {
  41. "symfony-app-dir": "app",
  42. "symfony-web-dir": "web",
  43. "branch-alias": {
  44. "dev-master": "2.2-dev"
  45. }
  46. }
  47. }