Added Propel to the vendors.php script

This commit is contained in:
William DURAND 2012-02-14 00:28:58 +01:00
parent b80951c21c
commit dd5d72a994
1 changed files with 2 additions and 1 deletions

View File

@ -36,11 +36,12 @@ $deps = array(
array('doctrine-dbal', 'http://github.com/doctrine/dbal.git', 'origin/master'),
array('doctrine-common', 'http://github.com/doctrine/common.git', 'origin/master'),
array('twig', 'http://github.com/fabpot/Twig.git', 'origin/master'),
array('propel', 'http://github.com/propelorm/Propel.git', 'origin/master'),
);
foreach ($deps as $dep) {
list($name, $url, $rev) = $dep;
if ($transport) {
$url = preg_replace('/^(http:|https:|git:)(.*)/', $transport . ':$2', $url);
}