composer.json 2.1KB

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