composer.json 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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": "v2.2.4",
  11. "doctrine/orm": "2.3.4",
  12. "doctrine/doctrine-bundle": "v1.2.0",
  13. "twig/extensions": "1.0.*@dev",
  14. "symfony/assetic-bundle": "v2.3.0",
  15. "symfony/swiftmailer-bundle": "v2.2.3",
  16. "symfony/monolog-bundle": "v2.2.0",
  17. "sensio/distribution-bundle": "v2.2.3",
  18. "sensio/framework-extra-bundle": "v2.2.3",
  19. "sensio/generator-bundle": "v2.3.3",
  20. "jms/security-extra-bundle": "1.5.1",
  21. "jms/di-extra-bundle": "1.4.0",
  22. "kriswallsmith/assetic": "v1.1.1",
  23. "friendsofsymfony/user-bundle": "v1.3.1",
  24. "doctrine/data-fixtures" : "v1.0.0-ALPHA4",
  25. "doctrine/doctrine-fixtures-bundle": "2.2.1",
  26. "stof/doctrine-extensions-bundle": "v1.2.0",
  27. "gregwar/image-bundle": "v2.0.19",
  28. "cedriclombardot/admingenerator-generator-bundle": "v1.0.0",
  29. "cedriclombardot/twig-generator": "v1.0.0",
  30. "shtumi/useful-bundle": "dev-master#c48ef1a",
  31. "sonata-project/doctrine-orm-admin-bundle": "2.2.1",
  32. "sonata-project/admin-bundle": "2.2.2",
  33. "sonata-project/jquery-bundle": "1.8.*@dev",
  34. "sonata-project/block-bundle": "2.2.3",
  35. "friendsofsymfony/facebook-bundle": "1.2.1",
  36. "doctrine/mongodb-odm-bundle": "v3.0.0-BETA4",
  37. "doctrine/mongodb-odm": "1.0.0-BETA9",
  38. "symfony/options-resolver": "v2.2.4",
  39. "symfony/doctrine-bridge": "v2.2.4",
  40. "doctrine/mongodb": "1.0.0-BETA1"
  41. },
  42. "scripts": {
  43. "post-install-cmd": [
  44. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  45. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  46. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  47. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  48. ],
  49. "post-update-cmd": [
  50. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  51. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  52. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  53. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  54. ]
  55. },
  56. "extra": {
  57. "symfony-app-dir": "app",
  58. "symfony-web-dir": "web",
  59. "branch-alias": {
  60. "dev-master": "2.1-dev"
  61. }
  62. }
  63. }