Ver código fonte

removed code related to Propel support

Fabien Potencier 14 anos atrás
pai
commit
b9f33a610e
3 arquivos alterados com 0 adições e 20 exclusões
  1. 0 8
      autoload.php.dist
  2. 0 6
      install_vendors.sh
  3. 0 6
      update_vendors.sh

+ 0 - 8
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()
-);

+ 0 - 6
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
 

+ 0 - 6
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