Skip to content

Instantly share code, notes, and snippets.

@tigefa4u
Last active January 1, 2016 21:19
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 tigefa4u/8203192 to your computer and use it in GitHub Desktop.
Save tigefa4u/8203192 to your computer and use it in GitHub Desktop.
gitonomy composer.json
{
"name": "gitonomy/gitonomy",
"description": "Git repositories inside your infrastructure",
"license": "MIT",
"authors": [
{
"name": "Alexandre Salomé",
"email": "alexandre.salome@gmail.com",
"homepage": "http://alexandre-salome.fr"
},
{
"name": "Julien DIDIER",
"email": "genzo.wm@gmail.com",
"homepage": "http://www.jdidier.net"
}
],
"homepage": "http://gitonomy.com",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.3",
"doctrine/orm": "2.3",
"swiftmailer/swiftmailer": "5.0",
"doctrine/doctrine-bundle": "1.2",
"twig/extensions": "1.0",
"symfony/assetic-bundle": "2.3",
"symfony/monolog-bundle": "2.3",
"sensio/distribution-bundle": "2.3",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"juliendidier/buzz-bundle": "dev-master",
"alexandresalome/mailcatcher": "dev-master",
"gitonomy/git-bundle": "dev-master"
},
"require-dev": {
"behat/behat": "3.0.x-dev",
"alexandresalome/php-webdriver": "dev-master",
"alexandresalome/mailcatcher": "dev-master"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
},
"minimum-stability": "dev",
"repositories": [
{
"type": "package",
"package": {
"name": "behat/behat",
"version": "dev-custom",
"source": {
"url": "https://github.com/Behat/Behat.git",
"type": "git",
"reference": "develop"
},
"autoload": {
"psr-0": {"Behat\\Behat": "src/"}
},
"bin": ["bin/behat"]
}
},
{
"type": "package",
"package": {
"name": "behat/gherkin",
"version": "dev-custom",
"source": {
"url": "https://github.com/Behat/Gherkin.git",
"type": "git",
"reference": "develop"
},
"autoload": {
"psr-0": {"Behat\\Gherkin": "src/"}
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment