Skip to content

Instantly share code, notes, and snippets.

@binarious
Created November 8, 2016 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save binarious/523aa8d0fd91f3681607c782f2e8b50d to your computer and use it in GitHub Desktop.
Save binarious/523aa8d0fd91f3681607c782f2e8b50d to your computer and use it in GitHub Desktop.
composer.json
{
"autoload": {
"psr-0": {
"": "src/"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
},
"config": {
"secure-http": false
},
"repositories": [
{
"type": "composer",
"url": "http://satis.fe.myvendor.de/"
}
],
"minimum-stability": "stable",
"name": "myvendor/myproject",
"github-oatuh": {
"github.com" : "xxx"
},
"require": {
"liip/imagine-bundle" : "0.21.*",
"egulias/email-validator" : "~1.2",
"friendsofsymfony/user-bundle" : "1.3.*",
"knplabs/knp-components" : "1.3.*",
"knplabs/knp-paginator-bundle" : "2.5.*",
"jms/serializer-bundle" : "1.1.*",
"myvendor/deployment-bundle" : "2.1.*",
"myvendor/bootstrap-bundle" : "4.0.*",
"myvendor/bootstrap-generator-bundle" : "3.*",
"myvendor/validation-bundle" : "1.3.*",
"myvendor/dql-bundle" : "1.1.*",
"myvendor/faq-bundle" : "2.1.*",
"myvendor/import-bundle" : "1.1.*",
"myvendor/buergerkonto-bundle" : "1.1.*",
"myvendor/print-queue-bundle" : "2.10.*",
"myvendor/payment-bundle" : "^3.0.0",
"myvendor/maintenance-bundle" : "2.2.*",
"myvendor/cron-runner-bundle" : "1.1.*",
"exercise/htmlpurifier-bundle" : "0.1.*",
"nelmio/security-bundle" : "1.8.*",
"payum/paypal-ipn" : "^1.3.7",
"php-http/guzzle6-adapter" : "^1.1.1",
"ocramius/proxy-manager" : "~1.0",
"binarious/u2f-two-factor-bundle": "^0.5.0",
"knplabs/gaufrette" : "0.2.*",
"elao/error-notifier-bundle" : "^1.0"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"/usr/local/bin/node /usr/local/bin/bower update",
"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",
"/usr/local/bin/node /usr/local/bin/bower update",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment