install_vendors.sh 745 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/bin/sh
  2. # initialization
  3. if [ -d "vendor" ]; then
  4. rm -rf vendor/*
  5. else
  6. mkdir vendor
  7. fi
  8. cd vendor
  9. # Doctrine
  10. git clone git://github.com/doctrine/doctrine2.git doctrine
  11. cd doctrine
  12. git submodule init
  13. git submodule update
  14. cd ..
  15. # Doctrine migrations
  16. git clone git://github.com/doctrine/migrations.git doctrine-migrations
  17. # Doctrine MongoDB
  18. git clone git://github.com/doctrine/mongodb-odm.git doctrine-mongodb
  19. # Propel
  20. svn co http://svn.propelorm.org/branches/1.5/ propel
  21. # Phing
  22. svn co http://svn.phing.info/tags/2.3.3 phing
  23. # Swiftmailer
  24. git clone git://github.com/swiftmailer/swiftmailer.git swiftmailer
  25. # Twig
  26. git clone git://github.com/fabpot/Twig.git twig
  27. # Zend Framework
  28. git clone git://github.com/zendframework/zf2.git zend