php - ZF2 doesn't load vendor's plugin -
i've got problem vendor/myvendor/mvc/plugin/url.php - doesn't load. i'm sure vendor loaded. have moved myvendor application, i'm sure configured it's loading well. tried make php-super-error (asdasda witout ;) , i'm sure file not loaded.
is possible there differences between 2.0 , current version in plugins loading? (that's question)
the difference in app version of zf2 engine, configuration should ok.
i didn't forget register namespaces etc
if use composer load add module or plugin autoload_classmap.php, autoload_namespaces.php
see example below
vendor\composer\autoload_classmap.php
return array( 'zenddevelopertools\\module' => $vendordir . '/zendframework/zend-developer-tools/module.php');
vendor\composer\autoload_namespaces.php
return array( 'zenddevelopertools' => $vendordir . '/zendframework/zend-developer-tools/src');
Comments
Post a Comment