I am trying to use Zend Frame work and Ext-Js4 together.
But I don’t know how to setup file and folder structure correctly.
I setup like this,

And in application/controllers/IndexController.php
$this->view->headScript()->appendFile('/js/ext-4.0.7/ext-all.js','text/javascript');
$this->view->headScript()->appendFile('/js/app.js','text/javascript');
$this->view->headLink()->appendStylesheet('/js/ext-4.0.7/resources/css/ext-all.css');
Is it right structure? anyone has a better idea?
Thank you.
If you’re using Ext-Js4 in your entire application, a better idea would be to add this in your bootstap, so that you don’t have to include your javascript paths in every controllers.