Skip to content

Instantly share code, notes, and snippets.

@Fake51
Last active December 17, 2015 06:19
Show Gist options
  • Save Fake51/5564378 to your computer and use it in GitHub Desktop.
Save Fake51/5564378 to your computer and use it in GitHub Desktop.
Base web project composer setup
{
"name": "fake51/composer",
"description": "Base web-project composer setup",
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"": "src"
}
},
"require-dev": {
"phpspec/phpspec": "*",
"behat/behat": "*",
"behat/mink": "*",
"codeception/codeception": "*"
},
"require": {
"monolog/monolog": "*",
"symfony/translation": "*",
"symfony/dependency-injection": "*",
"symfony/config": "*",
"symfony/yaml": "*",
"swiftmailer/swiftmailer": "*",
"ircmaxell/password-compat": "*",
"doctrine/orm": "*",
"doctrine/dbal": "*"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Peter Lind",
"email": "peter.e.lind@gmail.com"
}
],
"minimum-stability": "dev"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment