forked from symfony/symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vendors.sh
executable file
·59 lines (44 loc) · 1.22 KB
/
vendors.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh
cd $(dirname $0)
# initialization
if [ "$1" = "--reinstall" ]; then
rm -rf vendor
fi
mkdir -p vendor && cd vendor
##
# @param destination directory (e.g. "doctrine")
# @param URL of the git remote (e.g. git://github.com/doctrine/doctrine2.git)
# @param revision to point the head (e.g. origin/HEAD)
#
install_git()
{
INSTALL_DIR=$1
SOURCE_URL=$2
REV=$3
if [ -z $REV ]; then
REV=origin/HEAD
fi
if [ ! -d $INSTALL_DIR ]; then
git clone $SOURCE_URL $INSTALL_DIR
fi
cd $INSTALL_DIR
git fetch origin
git reset --hard $REV
cd ..
}
# Assetic
install_git assetic git://github.com/kriswallsmith/assetic.git
# Doctrine ORM
install_git doctrine git://github.com/doctrine/doctrine2.git 2.0.5
# Doctrine DBAL
install_git doctrine-dbal git://github.com/doctrine/dbal.git 2.0.5
# Doctrine Common
install_git doctrine-common git://github.com/doctrine/common.git 2.0.2
# Doctrine migrations
install_git doctrine-migrations git://github.com/doctrine/migrations.git
# Monolog
install_git monolog git://github.com/Seldaek/monolog.git
# Swiftmailer
install_git swiftmailer git://github.com/swiftmailer/swiftmailer.git origin/4.1
# Twig
install_git twig git://github.com/fabpot/Twig.git