Advertisement
paolostefan

composer.json

May 28th, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "name": "symfony/framework-standard-edition",
  3.     "description": "The \"Symfony Standard Edition\" distribution",
  4.     "autoload": {
  5.         "psr-0": { "": "src/" }
  6.     },
  7.     "require": {
  8.         "php": ">=5.3.3",
  9.         "symfony/symfony": "2.2.*",
  10.         "doctrine/orm": "~2.2,>=2.2.3",
  11.         "doctrine/doctrine-bundle": "1.2.*",
  12.         "twig/extensions": "1.0.*",
  13.         "symfony/assetic-bundle": "2.1.*",
  14.         "symfony/swiftmailer-bundle": "2.2.*",
  15.         "symfony/monolog-bundle": "2.2.*",
  16.         "sensio/distribution-bundle": "2.2.*",
  17.         "sensio/framework-extra-bundle": "2.2.*",
  18.         "sensio/generator-bundle": "2.2.*",
  19.         "jms/security-extra-bundle": "1.4.*",
  20.         "jms/di-extra-bundle": "1.3.*",
  21.         "friendsofsymfony/user-bundle":"~2.0@dev"
  22.     },
  23.     "scripts": {
  24.         "post-install-cmd": [
  25.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  26.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  27.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  28.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  29.         ],
  30.         "post-update-cmd": [
  31.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  32.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  33.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  34.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  35.         ]
  36.     },
  37.     "config": {
  38.         "bin-dir": "bin"
  39.     },
  40.     "minimum-stability": "alpha",
  41.     "extra": {
  42.         "symfony-app-dir": "app",
  43.         "symfony-web-dir": "web",
  44.         "branch-alias": {
  45.             "dev-master": "2.2-dev"
  46.         }
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement