Mainly the question is about ZF2 but the main task is how to integrate ZF2 to Yii.
If it's ZF1 I just have to include files that I need. ZF2 has a little bit more complex stucture.
Particularly I need to load ServiceManager module.
I've tried that:
$loader = new Zend\Loader\ClassMapAutoloader();
$loader->registerAutoloadMap(realpath(dirname(__FILE__) . '/lib/Zend/ServiceManager'));
$loader->register();
And got an error:
Warning: include(/Project/lib/Zend/ServiceManager): failed to open stream: Invalid argument in /Project/lib/Zend/Loader/ClassMapAutoloader.php on line 186
Warning: include(): Failed opening '/Project/lib/Zend/ServiceManager' for inclusion (include_path='/Project/lib:.:/usr/local/zend/share/ZendFramework/library:/usr/local/zend/share/pear') in /Project/lib/Zend/Loader/ClassMapAutoloader.php on line 186
Fatal error: Uncaught exception 'Zend\Loader\Exception\InvalidArgumentException' with message 'Map file provided does not return a map. Map file: "/Project/lib/Zend/ServiceManager"' in /Project/lib/Zend/Loader/ClassMapAutoloader.php:88
Stack trace:
#0 /Project/index.php(14): Zend\Loader\ClassMapAutoloader->registerAutoloadMap('/Project/...')
#1 {main}
thrown in /Project/lib/Zend/Loader/ClassMapAutoloader.php on line 88
According to documentation do I need set namespace description in config array before?
Could someone give an example please how to include only one module?
UPDATE 1:
Also I've tried this one:
require_once 'Zend/Loader/StandardAutoloader.php';
$l = new Zend\Loader\StandardAutoloader();
$l->registerPrefix('Zend', realpath(dirname(__FILE__) . '/lib/Zend/') );
$l->register();
It works. After that I called:
use Zend\Debug;
Zend\Debug::dump($l);
This rerurns an error:
Fatal error: Class 'Zend\Debug' not found in ...
UPDATE 2:
this code works for me:
require_once 'Zend/Loader/StandardAutoloader.php';
$l = new Zend\Loader\StandardAutoloader();
$l->registerNamespace('Zend', realpath(dirname(__FILE__) . '/lib/Zend'));
$l->registerPrefix('Zend', realpath(dirname(__FILE__) . '/lib/Zend') );
$l->register();
Now I can include Zend library anywhere in project. Anyway I would be glad to see others solutions
