Created
April 25, 2016 14:19
-
-
Save AlainT/0c0c16f74f8904604ebed24c6226dab7 to your computer and use it in GitHub Desktop.
mon composer.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "symfony/framework-standard-edition", | |
"license": "MIT", | |
"type": "project", | |
"description": "The \"Symfony Standard Edition\" distribution", | |
"autoload": { | |
"psr-0": { "": "src/" , "tedious/fetch": "vendor/tedivm/fetch/" } | |
}, | |
"repositories": [ | |
{ | |
"type": "package", | |
"package": { | |
"name": "jquery/jquery", | |
"version": "1.11.1", | |
"dist": { | |
"url": "https://code.jquery.com/jquery-1.11.1.js", | |
"type": "file" | |
} | |
} | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "jquery/jquery-ui", | |
"version": "1.11.4", | |
"dist": { | |
"url": "https://code.jquery.com/ui/1.11.4/jquery-ui.js", | |
"type": "file" | |
} | |
} | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "jquery/jquery-ui-css", | |
"version": "1.11.4", | |
"dist": { | |
"url": "https://code.jquery.com/ui/1.11.4/themes/mint-choc/jquery-ui.css", | |
"type": "file" | |
} | |
} | |
} | |
], | |
"require": { | |
"php": ">=5.3.9", | |
"symfony/symfony": "2.7.*", | |
"doctrine/orm": "^2.4.8", | |
"doctrine/doctrine-bundle": "~1.4", | |
"symfony/assetic-bundle": "~2.3", | |
"symfony/swiftmailer-bundle": "~2.3", | |
"symfony/monolog-bundle": "~2.4", | |
"sensio/distribution-bundle": "~4.0", | |
"sensio/framework-extra-bundle": "^3.0", | |
"tedivm/fetch": "0.6.*", | |
"incenteev/composer-parameter-handler": "~2.0", | |
"braincrafted/bootstrap-bundle": "~2.0", | |
"symfony/var-dumper": "^2.7", | |
"twbs/bootstrap": "3.0.*", | |
"oyejorge/less.php": "~1.7", | |
"jquery/jquery": "1.11.*", | |
"apy/datagrid-bundle": "^2.2", | |
"friendsofsymfony/user-bundle": "~1.3", | |
"knplabs/knp-menu-bundle": "~2", | |
"doctrine/doctrine-fixtures-bundle": "^2.2", | |
"symfony/process": "^2.7", | |
"fabpot/goutte": "~2", | |
"jquery/jquery-ui": "^1.11", | |
"jquery/jquery-ui-css": "^1.11", | |
"stfalcon/tinymce-bundle": "~1.0", | |
"predis/predis": "^1.0" | |
}, | |
"require-dev": { | |
"sensio/generator-bundle": "~2.3" | |
}, | |
"scripts": { | |
"post-install-cmd": [ | |
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", | |
"Braincrafted\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::install", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget" | |
], | |
"post-update-cmd": [ | |
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", | |
"Braincrafted\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::install", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget" | |
] | |
}, | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"extra": { | |
"symfony-app-dir": "app", | |
"symfony-web-dir": "web", | |
"symfony-assets-install": "relative", | |
"incenteev-parameters": { | |
"file": "app/config/parameters.yml" | |
}, | |
"branch-alias": { | |
"dev-master": "2.7-dev" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment