I’ve put the Zend library folder into classes folder of my app and renamed all files and folders to lowercase ( using Ant Renamer ).
When I call Zend_Feed, instead of loading /classes/zend/feed.php, kohana loads Zend from my servers share\ZendFramework\library\Zend\ (Zend Server), so I get a Cannot redeclare class Zend_Uri_Http error.
ZF version; 1.10
Kohana version: the most recent files available through GitHub
Kohana autoloader expects lowercase filenames. You can register both Zend and Kohana autoloaders and it should work fine.
In bootstrap you have:
Zend autoloader should go before or after that (I don’t know if that makes a difference). Found a post how to do it:
http://www.beyondcoding.com/2009/10/29/using-zend-framework-1-8-with-kohana/