This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/vendors.sh
2011-04-04 12:41:27 +02:00

69 lines
1.5 KiB
Bash
Executable File

#!/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
# Doctrine Data Fixtures Extension
install_git doctrine-data-fixtures git://github.com/doctrine/data-fixtures.git
# Doctrine DBAL
install_git doctrine-dbal git://github.com/doctrine/dbal.git
# Doctrine Common
install_git doctrine-common git://github.com/doctrine/common.git
# Doctrine migrations
install_git doctrine-migrations git://github.com/doctrine/migrations.git
# Doctrine MongoDB
install_git doctrine-mongodb git://github.com/doctrine/mongodb.git
# Doctrine MongoDB
install_git doctrine-mongodb-odm git://github.com/doctrine/mongodb-odm.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