Advertisement
Guest User

Untitled

a guest
Mar 14th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.50 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-4": { "": "src/" },
  8.         "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
  9.     },
  10.     "require": {
  11.         "php": ">=5.3.9",
  12.         "symfony/symfony": "2.8.*",
  13.         "doctrine/orm": "^2.4.8",
  14.         "doctrine/doctrine-bundle": "~1.4",
  15.         "symfony/swiftmailer-bundle": "~2.3",
  16.         "symfony/monolog-bundle": "~2.4",
  17.         "sensio/distribution-bundle": "~5.0",
  18.         "sensio/framework-extra-bundle": "^3.0.2",
  19.         "incenteev/composer-parameter-handler": "~2.0",
  20.         "friendsofsymfony/user-bundle": "~2.0@dev",
  21.         "gregwar/captcha-bundle": "2.*"
  22.     },
  23.     "require-dev": {
  24.         "sensio/generator-bundle": "~3.0",
  25.         "symfony/phpunit-bridge": "~2.7"
  26.     },
  27.     "scripts": {
  28.         "post-install-cmd": [
  29.             "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  30.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  31.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  32.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  33.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  34.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  35.         ],
  36.         "post-update-cmd": [
  37.             "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  38.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  39.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  40.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  41.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  42.             "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  43.         ]
  44.     },
  45.     "config": {
  46.         "bin-dir": "bin",
  47.         "platform": {
  48.             "php": "5.3.9"
  49.         }
  50.     },
  51.  
  52.     "extra": {
  53.         "symfony-app-dir": "app",
  54.         "symfony-web-dir": "web",
  55.         "symfony-assets-install": "relative",
  56.         "incenteev-parameters": {
  57.             "file": "app/config/parameters.yml"
  58.         },
  59.         "branch-alias": {
  60.             "dev-master": "2.8-dev"
  61.         }
  62.     }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement