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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#!/bin/sh
DIR=`php -r "echo dirname(dirname(realpath('$0')));"`
VENDOR="$DIR/vendor"
VERSION=`cat "$DIR/VERSION"`
BUNDLES=$VENDOR/bundles
# initialization
if [ "$1" = "--reinstall" -o "$2" = "--reinstall" ]; then
rm -rf $VENDOR
fi
# just the latest revision
CLONE_OPTIONS=''
if [ "$1" = "--min" -o "$2" = "--min" ]; then
CLONE_OPTIONS='--depth 1'
fi
mkdir -p "$VENDOR" && cd "$VENDOR"
##
# @param destination directory (e.g. "doctrine")
# @param URL of the git remote (e.g. https://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
echo "> Installing/Updating " $INSTALL_DIR
if [ -z $REV ]; then
REV=origin/HEAD
fi
if [ ! -d $INSTALL_DIR ]; then
git clone $CLONE_OPTIONS $SOURCE_URL $INSTALL_DIR
fi
cd $INSTALL_DIR
git fetch origin
git reset --hard $REV
cd ..
}
# Assetic
install_git assetic https://github.com/kriswallsmith/assetic.git #v1.0.0alpha1
# Symfony
install_git symfony https://github.com/symfony/symfony.git #v$VERSION
# Doctrine ORM
install_git doctrine https://github.com/doctrine/doctrine2.git 2.0.4
# Doctrine DBAL
install_git doctrine-dbal https://github.com/doctrine/dbal.git 2.0.4
# Doctrine Common
install_git doctrine-common https://github.com/doctrine/common.git 2.0.2
# Swiftmailer
install_git swiftmailer https://github.com/swiftmailer/swiftmailer.git origin/4.1
# Twig
install_git twig https://github.com/fabpot/Twig.git
# Twig Extensions
install_git twig-extensions https://github.com/fabpot/Twig-extensions.git
# Monolog
install_git monolog https://github.com/Seldaek/monolog.git
# SensioFrameworkExtraBundle
mkdir -p $BUNDLES/Sensio/Bundle
cd $BUNDLES/Sensio/Bundle
install_git FrameworkExtraBundle https://github.com/sensio/SensioFrameworkExtraBundle.git
# SecurityExtraBundle
mkdir -p $BUNDLES/JMS
cd $BUNDLES/JMS
install_git SecurityExtraBundle https://github.com/schmittjoh/SecurityExtraBundle.git
# Symfony bundles
mkdir -p $BUNDLES/Symfony/Bundle
cd $BUNDLES/Symfony/Bundle
# WebConfiguratorBundle
install_git WebConfiguratorBundle https://github.com/symfony/WebConfiguratorBundle.git
# Update the bootstrap files
$DIR/bin/build_bootstrap.php
# Update assets
$DIR/app/console assets:install $DIR/web/
|