composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. },
  14. "scripts": {
  15. "post-install-cmd": [
  16. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  17. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  18. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  19. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  20. ],
  21. "post-update-cmd": [
  22. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  23. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  24. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  25. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  26. ]
  27. },
  28. "config": {
  29. "bin-dir": "bin"
  30. },
  31. "minimum-stability": "stable",
  32. "extra": {
  33. "symfony-app-dir": "app",
  34. "symfony-web-dir": "web",
  35. "branch-alias": {
  36. "dev-master": "2.3-dev"
  37. }
  38. }
  39. }