This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/vendors.php

59 lines
1.8 KiB
PHP
Raw Normal View History

2011-05-23 15:01:21 +01:00
#!/usr/bin/env php
<?php
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2011-05-24 16:27:37 +01:00
/*
CAUTION: This file installs the dependencies needed to run the Symfony2 test suite.
If you want to create a new project, download the Symfony Standard Edition instead:
http://symfony.com/download
*/
set_time_limit(0);
2011-05-23 15:01:21 +01:00
if (!is_dir($vendorDir = dirname(__FILE__).'/vendor')) {
mkdir($vendorDir, 0777, true);
}
// optional transport change
$transport = false;
if (isset($argv[1]) && in_array($argv[1], array('--transport=http', '--transport=https', '--transport=git'))) {
$transport = preg_replace('/^--transport=(.*)$/', '$1', $argv[1]);
}
2011-05-23 15:01:21 +01:00
$deps = array(
2012-05-30 17:57:09 +01:00
array('doctrine', 'http://github.com/doctrine/doctrine2.git', '2.1.7'),
array('doctrine-dbal', 'http://github.com/doctrine/dbal.git', '2.1.7'),
2011-12-08 13:59:35 +00:00
array('doctrine-common', 'http://github.com/doctrine/common.git', '2.1.4'),
2012-10-25 09:53:58 +01:00
array('monolog', 'http://github.com/Seldaek/monolog.git', '1.2.1'),
array('swiftmailer', 'http://github.com/swiftmailer/swiftmailer.git', 'v4.2.2'),
array('twig', 'http://github.com/fabpot/Twig.git', 'v1.10.3'),
2011-05-23 15:01:21 +01:00
);
foreach ($deps as $dep) {
list($name, $url, $rev) = $dep;
if ($transport) {
$url = preg_replace('/^(http:|https:|git:)(.*)/', $transport . ':$2', $url);
}
2011-05-23 15:01:21 +01:00
echo "> Installing/Updating $name\n";
$installDir = $vendorDir.'/'.$name;
if (!is_dir($installDir)) {
2011-06-10 16:57:54 +01:00
system(sprintf('git clone %s %s', escapeshellarg($url), escapeshellarg($installDir)));
2011-05-23 15:01:21 +01:00
}
2011-06-10 16:57:54 +01:00
system(sprintf('cd %s && git fetch origin && git reset --hard %s', escapeshellarg($installDir), escapeshellarg($rev)));
2011-05-23 15:01:21 +01:00
}