Skip to content

Commit

Permalink
moved vendors.sh to PHP
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed May 23, 2011
1 parent ab4352c commit de61474
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 59 deletions.
38 changes: 38 additions & 0 deletions vendors.php
@@ -0,0 +1,38 @@
#!/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.
*/

if (!is_dir($vendorDir = dirname(__FILE__).'/vendor')) {
mkdir($vendorDir, 0777, true);
}

$deps = array(
array('assetic', 'http://github.com/kriswallsmith/assetic.git', 'origin/HEAD'),
array('doctrine', 'http://github.com/doctrine/doctrine2.git', '2.0.5'),
array('doctrine-dbal', 'http://github.com/doctrine/dbal.git', '2.0.5'),
array('doctrine-common', 'http://github.com/doctrine/common.git', 'origin/3.0.x'),
array('monolog', 'http://github.com/Seldaek/monolog.git', 'origin/HEAD'),
array('swiftmailer', 'http://github.com/swiftmailer/swiftmailer.git', 'origin/4.1'),
array('twig', 'http://github.com/fabpot/Twig.git', 'origin/HEAD'),
);

foreach ($deps as $dep) {
list($name, $url, $rev) = $dep;

echo "> Installing/Updating $name\n";

$installDir = $vendorDir.'/'.$name;
if (!is_dir($installDir)) {
system(sprintf('git clone %s %s', $url, $installDir));
}

system(sprintf('cd %s && git fetch origin && git reset --hard %s', $installDir, $rev));
}
59 changes: 0 additions & 59 deletions vendors.sh

This file was deleted.

2 comments on commit de61474

@stof
Copy link
Member

@stof stof commented on de61474 May 24, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should probably add a message in the script saying that this one is intended to be used when running the testsuite, not when creating a project as this was a WTF for some people on #symfony

@fabpot
Copy link
Member Author

@fabpot fabpot commented on de61474 May 24, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done: d6a4bcc

Please sign in to comment.