forked from symfony/symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_vendors.sh
More file actions
executable file
·40 lines (28 loc) · 929 Bytes
/
Copy pathinstall_vendors.sh
File metadata and controls
executable file
·40 lines (28 loc) · 929 Bytes
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
#!/bin/sh
# initialization
if [ -d "vendor" ]; then
rm -rf vendor/*
else
mkdir vendor
fi
cd vendor
# Doctrine ORM
git clone git://github.com/doctrine/doctrine2.git doctrine
# Doctrine Data Fixtures Extension
git clone git://github.com/doctrine/data-fixtures doctrine-data-fixtures
# Doctrine DBAL
git clone git://github.com/doctrine/dbal.git doctrine-dbal
# Doctrine Common
git clone git://github.com/doctrine/common.git doctrine-common
# Doctrine migrations
git clone git://github.com/doctrine/migrations.git doctrine-migrations
# Doctrine MongoDB
git clone git://github.com/doctrine/mongodb.git doctrine-mongodb
# Doctrine MongoDB
git clone git://github.com/doctrine/mongodb-odm.git doctrine-mongodb-odm
# Swiftmailer
git clone git://github.com/swiftmailer/swiftmailer.git swiftmailer
# Twig
git clone git://github.com/fabpot/Twig.git twig
# Zend Framework
git clone git://github.com/zendframework/zf2.git zend