composer.json 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.1.*",
  10. "doctrine/orm": ">=2.2.3,<2.4-dev",
  11. "doctrine/doctrine-bundle": "1.1.*",
  12. "twig/extensions": "1.0.*@dev",
  13. "symfony/assetic-bundle": "2.1.*",
  14. "symfony/swiftmailer-bundle": "2.1.*",
  15. "symfony/monolog-bundle": "2.1.*",
  16. "sensio/distribution-bundle": "2.1.*",
  17. "sensio/framework-extra-bundle": "2.1.*",
  18. "sensio/generator-bundle": "2.1.*",
  19. "jms/security-extra-bundle": "1.2.*",
  20. "jms/di-extra-bundle": "1.1.*",
  21. "kriswallsmith/assetic": "1.1.*@dev",
  22. "friendsofsymfony/user-bundle": "*",
  23. "doctrine/data-fixtures" : "dev-master",
  24. "doctrine/doctrine-fixtures-bundle": "dev-master",
  25. "stof/doctrine-extensions-bundle": "dev-master",
  26. "gregwar/image-bundle": "dev-master"
  27. },
  28. "scripts": {
  29. "post-install-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. "post-update-cmd": [
  36. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  37. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  38. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  39. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  40. ]
  41. },
  42. "extra": {
  43. "symfony-app-dir": "app",
  44. "symfony-web-dir": "web",
  45. "branch-alias": {
  46. "dev-master": "2.1-dev"
  47. }
  48. }
  49. }