Last active
January 1, 2016 21:19
-
-
Save tigefa4u/8203192 to your computer and use it in GitHub Desktop.
gitonomy 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": "gitonomy/gitonomy", | |
"description": "Git repositories inside your infrastructure", | |
"license": "MIT", | |
"authors": [ | |
{ | |
"name": "Alexandre Salomé", | |
"email": "[email protected]", | |
"homepage": "http://alexandre-salome.fr" | |
}, | |
{ | |
"name": "Julien DIDIER", | |
"email": "[email protected]", | |
"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