composer.json 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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": "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. "shtumi/useful-bundle": "dev-master",
  30. "sonata-project/doctrine-orm-admin-bundle": "dev-master",
  31. "sonata-project/admin-bundle": "dev-master",
  32. "sonata-project/jquery-bundle": "dev-master",
  33. "sonata-project/block-bundle": "dev-master"
  34. },
  35. "scripts": {
  36. "post-install-cmd": [
  37. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  38. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  39. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  40. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  41. ],
  42. "post-update-cmd": [
  43. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  44. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  45. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  46. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  47. ]
  48. },
  49. "extra": {
  50. "symfony-app-dir": "app",
  51. "symfony-web-dir": "web",
  52. "branch-alias": {
  53. "dev-master": "2.1-dev"
  54. }
  55. }
  56. }