diff --git a/autoload.php.dist b/autoload.php.dist index a95bec047d1d..1f19ccaace4c 100644 --- a/autoload.php.dist +++ b/autoload.php.dist @@ -20,11 +20,3 @@ $loader->registerPrefixes(array( 'Twig_' => __DIR__.'/vendor/twig/lib', )); $loader->register(); - -// needed for code coverage -require_once __DIR__.'/vendor/propel/runtime/lib/Propel.php'; -set_include_path( - __DIR__.'/vendor/phing/classes'.PATH_SEPARATOR. - __DIR__.'/vendor/propel/runtime/lib'.PATH_SEPARATOR. - get_include_path() -); diff --git a/install_vendors.sh b/install_vendors.sh index 4c4d9bb652ac..64a3426c30cf 100755 --- a/install_vendors.sh +++ b/install_vendors.sh @@ -27,12 +27,6 @@ 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 diff --git a/update_vendors.sh b/update_vendors.sh index 6fa6a3ca1741..8811598622e8 100755 --- a/update_vendors.sh +++ b/update_vendors.sh @@ -20,12 +20,6 @@ cd $CURRENT/doctrine-migrations && git pull # Doctrine MongoDB cd $CURRENT/doctrine-mongodb && git pull -# Propel -cd $CURRENT/propel && svn up - -# Phing -cd $CURRENT/phing && svn up - # Swiftmailer cd $CURRENT/swiftmailer && git pull