composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.3.*",
  10. "doctrine/orm": ">=2.2.3,<2.4-dev",
  11. "doctrine/doctrine-bundle": "1.2.*",
  12. "sensio/distribution-bundle": "2.2.*",
  13. "twig/extensions": "1.0.*"
  14. },
  15. "scripts": {
  16. "post-install-cmd": [
  17. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  18. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  19. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  20. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  21. ],
  22. "post-update-cmd": [
  23. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  24. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  25. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  26. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  27. ]
  28. },
  29. "config": {
  30. "bin-dir": "bin"
  31. },
  32. "minimum-stability": "stable",
  33. "extra": {
  34. "symfony-app-dir": "app",
  35. "symfony-web-dir": "web",
  36. "branch-alias": {
  37. "dev-master": "2.3-dev"
  38. }
  39. }
  40. }