| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- #!/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.
 -  */
 - 
 - /*
 - 
 - 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);
 - 
 - 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]);
 - }
 - 
 - $deps = array(
 -     array('doctrine', 'http://github.com/doctrine/doctrine2.git', '2.1.6'),
 -     array('doctrine-dbal', 'http://github.com/doctrine/dbal.git', '2.1.6'),
 -     array('doctrine-common', 'http://github.com/doctrine/common.git', '2.1.4'),
 -     array('monolog', 'http://github.com/Seldaek/monolog.git', '1.0.2'),
 -     array('swiftmailer', 'http://github.com/swiftmailer/swiftmailer.git', 'v4.1.5'),
 -     array('twig', 'http://github.com/fabpot/Twig.git', 'v1.6.0'),
 - );
 - 
 - foreach ($deps as $dep) {
 -     list($name, $url, $rev) = $dep;
 -     
 -     if ($transport) {
 -         $url = preg_replace('/^(http:|https:|git:)(.*)/', $transport . ':$2', $url);
 -     }
 - 
 -     echo "> Installing/Updating $name\n";
 - 
 -     $installDir = $vendorDir.'/'.$name;
 -     if (!is_dir($installDir)) {
 -         system(sprintf('git clone %s %s', escapeshellarg($url), escapeshellarg($installDir)));
 -     }
 - 
 -     system(sprintf('cd %s && git fetch origin && git reset --hard %s', escapeshellarg($installDir), escapeshellarg($rev)));
 - }
 
 
  |