Advertisement
Guest User

Untitled

a guest
Oct 24th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 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. "jms/di-extra-bundle": "1.1.*",
  23. "doctrine/doctrine-fixtures-bundle": "3.0.*@dev",
  24. "doctrine/data-fixtures": "@dev"
  25. },
  26. "scripts": {
  27. "post-install-cmd": [
  28. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  29. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  30. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  31. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  32. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  33. ],
  34. "post-update-cmd": [
  35. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  36. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  37. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  38. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  39. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  40. ]
  41. },
  42. "config": {
  43. "bin-dir": "bin"
  44. },
  45. "minimum-stability": "stable",
  46. "extra": {
  47. "symfony-app-dir": "app",
  48. "symfony-web-dir": "web",
  49. "incenteev-parameters": {
  50. "file": "app/config/parameters.yml"
  51. },
  52. "branch-alias": {
  53. "dev-master": "2.3-dev"
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement