Advertisement
Guest User

composer.json

a guest
Nov 9th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. {
  2. "name": "symfony/framework-standard-edition",
  3. "license": "MIT",
  4. "type": "project",
  5. "description": "The \"Symfony Standard Edition\" distribution",
  6. "autoload": {
  7. "psr-0": { "": "src/" }
  8. },
  9. "require": {
  10. "php": ">=5.3.3",
  11. "symfony/symfony": "2.3.*",
  12. "doctrine/orm": ">=2.2.3,<2.4-dev",
  13. "doctrine/doctrine-bundle": "1.2.*",
  14. "twig/extensions": "1.0.*",
  15. "symfony/assetic-bundle": "2.3.*",
  16. "symfony/swiftmailer-bundle": "2.3.*",
  17. "symfony/monolog-bundle": "2.3.*",
  18. "sensio/distribution-bundle": "2.3.*",
  19. "sensio/framework-extra-bundle": "2.3.*",
  20. "sensio/generator-bundle": "2.3.*",
  21. "incenteev/composer-parameter-handler": "~2.0",
  22. "gedmo/doctrine-extensions": "v2.3.2",
  23. "stof/doctrine-extensions-bundle": "1.1"
  24. },
  25. "scripts": {
  26. "post-install-cmd": [
  27. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  28. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  29. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  30. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  31. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  32. ],
  33. "post-update-cmd": [
  34. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  35. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  36. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  37. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  38. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  39. ]
  40. },
  41. "config": {
  42. "bin-dir": "bin"
  43. },
  44. "minimum-stability": "stable",
  45. "extra": {
  46. "symfony-app-dir": "app",
  47. "symfony-web-dir": "web",
  48. "incenteev-parameters": {
  49. "file": "app/config/parameters.yml"
  50. },
  51. "branch-alias": {
  52. "dev-master": "2.3-dev"
  53. }
  54. }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement