update_vendors.sh 541 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/sh
  2. CURRENT=`pwd`/vendor
  3. # Doctrine ORM
  4. cd $CURRENT/doctrine && git pull
  5. # Doctrine Data Fixtures Extension
  6. cd $CURRENT/doctrine-data-fixtures && git pull
  7. # Doctrine DBAL
  8. cd $CURRENT/doctrine-dbal && git pull
  9. # Doctrine common
  10. cd $CURRENT/doctrine-common && git pull
  11. # Doctrine migrations
  12. cd $CURRENT/doctrine-migrations && git pull
  13. # Doctrine MongoDB
  14. cd $CURRENT/doctrine-mongodb && git pull
  15. # Swiftmailer
  16. cd $CURRENT/swiftmailer && git pull
  17. # Twig
  18. cd $CURRENT/twig && git pull
  19. # Zend Framework
  20. cd $CURRENT/zend && git pull