https://github.com/EvanDotPro/EdpSuperluminal
Oh, it turns out, there are much easier ways :)

Small changes in the code - and you can also cache code of your modules.

In file
https://github.com/EvanDotPro/EdpSuperluminal/blob/master/Module.php#L54

change
if (0 !== strpos($class, 'Zend')) {
    continue;
}

to

if (0 === strpos($class, 'Composer')) {
    continue;
}
if (0 === strpos($class, 'EdpSuperluminal')) {
    continue;
}

And if you use ZfcUser, add to ZfcUser\Options\ModuleOptions

class ModuleOptions extends AbstractOptions implements
AuthenticationOptionsInterface, // !!! <<<<< add this  (php >= 5.4) !!!
    UserControllerOptionsInterface,
    UserServiceOptionsInterface

performance x 2.5 !!!!!!!!!!!!!




--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/yaf-and-phalcon-tp4661414p4661521.html
Sent from the Zend Framework mailing list archive at Nabble.com.

-- 
List: fw-general@lists.zend.com
Info: http://framework.zend.com/archives
Unsubscribe: fw-general-unsubscr...@lists.zend.com


Reply via email to