Skip to content

Instantly share code, notes, and snippets.

@hdenguir
Last active December 15, 2015 09:09
Show Gist options
  • Save hdenguir/5236726 to your computer and use it in GitHub Desktop.
Save hdenguir/5236726 to your computer and use it in GitHub Desktop.
Install vendors of Symfony 2.1 + Sonata projects + others: First, run: - php composer.phar sefl-update // upgrade the composer Second, run : - php composer.phar update
{
"name": "symfony/framework-standard-edition",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.0.*",
"twig/extensions": "1.0.*@dev",
"symfony/assetic-bundle": "2.1.*",
"symfony/swiftmailer-bundle": "2.1.*",
"symfony/monolog-bundle": "2.1.*",
"sensio/distribution-bundle": "2.1.*",
"sensio/framework-extra-bundle": "2.1.*",
"sensio/generator-bundle": "2.1.*",
"jms/security-extra-bundle": "1.2.*",
"jms/di-extra-bundle": "1.1.*",
"kriswallsmith/assetic": "1.1.*@dev",
"sonata-project/easy-extends-bundle" : "2.1.*",
"sonata-project/cache-bundle": "2.1.*",
"sonata-project/jquery-bundle": "1.8.*",
"sonata-project/exporter": "1.*",
"sonata-project/block-bundle": "2.1.1",
"sonata-project/user-bundle": "2.1.*@dev",
"sonata-project/admin-bundle": "2.1.*@dev",
"sonata-project/doctrine-orm-admin-bundle": "2.1.*@dev",
"friendsofsymfony/user-bundle" : "1.3.*",
"sonata-project/doctrine-extensions" : "1.*",
"sonata-project/google-authenticator" : "1.*",
"knplabs/knp-menu-bundle": "1.1.*",
"jms/i18n-routing-bundle": "1.1.*@dev",
"avalanche123/imagine-bundle": "dev-master",
"gedmo/doctrine-extensions": "2.3.*@dev",
"stof/doctrine-extensions-bundle": "1.1.*@dev"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment