composer.json 2.5KB

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