how can I integrate the PHPExcel into my Zend app.
My actual folder structure is the following:
/application
controllers
views
etc...
/librar
I know it's 2 years since the question is asked but it may help someone; the easiest way ( not the optimal) is to extract the PHPExcel folder in your Public and then just use the old way ex; (in your controller actions):
include 'PHPExcel.php';
include 'PHPExcel/Writer/Excel2007.php';
$myobject = new PHPExcel();