Advertisement
Guest User

composer.json

a guest
Aug 27th, 2013
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. {
  2. "name" : "symfony/framework-standard-edition",
  3. "description" : "Velrez Application",
  4. "type" : "project",
  5. "license" : [
  6. "MIT"
  7. ],
  8. "require" : {
  9. "sonata-project/admin-bundle" : "dev-master",
  10. "doctrine/doctrine-fixtures-bundle" : "dev-master",
  11. "symfony/swiftmailer-bundle" : "2.3.*",
  12. "friendsofsymfony/user-bundle" : "2.0.*@dev",
  13. "sonata-project/cache-bundle" : "dev-master",
  14. "doctrine/orm" : ">=2.2.3,<2.4-dev",
  15. "doctrine/data-fixtures" : "dev-master",
  16. "knplabs/knp-menu-bundle" : "1.1.*",
  17. "twig/extensions" : "1.0.*",
  18. "php" : ">=5.3.3",
  19. "sonata-project/jquery-bundle" : "1.8.*",
  20. "symfony/monolog-bundle" : "2.3.*",
  21. "sensio/distribution-bundle" : "2.3.*",
  22. "symfony/symfony" : "2.3.*",
  23. "sonata-project/doctrine-orm-admin-bundle" : "dev-master",
  24. "adesigns/calendar-bundle" : "dev-master",
  25. "symfony/assetic-bundle" : "2.3.*",
  26. "incenteev/composer-parameter-handler" : "~2.0",
  27. "sonata-project/exporter" : "1.1.0",
  28. "sonata-project/intl-bundle" : "2.2.*@dev",
  29. "friendsofsymfony/jsrouting-bundle" : "~1.1",
  30. "sensio/generator-bundle" : "2.3.*",
  31. "sensio/framework-extra-bundle" : "2.3.*",
  32. "sonata-project/block-bundle" : "dev-master",
  33. "doctrine/doctrine-bundle" : "1.2.*"
  34. },
  35. "autoload" : {
  36. "psr-0" : {
  37. "" : "src/"
  38. }
  39. },
  40. "minimum-stability" : "stable",
  41. "config" : {
  42. "bin-dir" : "bin"
  43. },
  44. "scripts" : {
  45. "post-update-cmd" : [
  46. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  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. "post-install-cmd" : [
  53. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  54. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  55. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  56. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  57. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  58. ]
  59. },
  60. "extra" : {
  61. "branch-alias" : {
  62. "dev-master" : "2.3-dev"
  63. },
  64. "symfony-web-dir" : "web",
  65. "symfony-app-dir" : "app",
  66. "incenteev-parameters" : {
  67. "file" : "app/config/parameters.yml"
  68. }
  69. }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement