forked from symfony/symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vendors.php
executable file
·47 lines (36 loc) · 1.45 KB
/
vendors.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/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
*/
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));
}