|
@@ -0,0 +1,33 @@
|
|
|
|
+#!/bin/sh
|
|
|
|
+
|
|
|
|
+# initialization
|
|
|
|
+rm -rf vendor/*
|
|
|
|
+cd vendor
|
|
|
|
+
|
|
|
|
+# Doctrine
|
|
|
|
+git clone git://github.com/doctrine/doctrine2.git doctrine
|
|
|
|
+cd doctrine
|
|
|
|
+git submodule init
|
|
|
|
+git submodule update
|
|
|
|
+cd ..
|
|
|
|
+
|
|
|
|
+# Doctrine migrations
|
|
|
|
+git clone git://github.com/doctrine/migrations.git doctrine-migrations
|
|
|
|
+
|
|
|
|
+# Doctrine MongoDB
|
|
|
|
+git clone git://github.com/doctrine/mongodb-odm.git doctrine-mongodb
|
|
|
|
+
|
|
|
|
+# Propel
|
|
|
|
+svn co http://svn.propelorm.org/branches/1.5/ propel
|
|
|
|
+
|
|
|
|
+# Phing
|
|
|
|
+svn co http://svn.phing.info/tags/2.3.3 phing
|
|
|
|
+
|
|
|
|
+# 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
|