composer.json 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "minimum-stability": "stable",
  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.3",
  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.2.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" : "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": "2.1.*@dev",
  29. "cedriclombardot/twig-generator": "dev-master",
  30. "white-october/pagerfanta-bundle": "2.1.*@dev",
  31. "pagerfanta/pagerfanta": "1.0.*@dev",
  32. "shtumi/useful-bundle": "dev-master",
  33. "sonata-project/doctrine-orm-admin-bundle": "2.2.1",
  34. "sonata-project/admin-bundle": "2.2.2",
  35. "sonata-project/jquery-bundle": "1.8.*@dev",
  36. "sonata-project/block-bundle": "2.2.3",
  37. "friendsofsymfony/facebook-bundle": "dev-master"
  38. },
  39. "scripts": {
  40. "post-install-cmd": [
  41. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  42. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  43. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  44. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  45. ],
  46. "post-update-cmd": [
  47. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  48. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  49. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  50. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  51. ]
  52. },
  53. "extra": {
  54. "symfony-app-dir": "app",
  55. "symfony-web-dir": "web",
  56. "branch-alias": {
  57. "dev-master": "2.1-dev"
  58. }
  59. }
  60. }