我正在尝试在ZF2中加载一个带有下划线的类。
这是我想要使用的项目:https://github.com/PHPGangsta/GoogleAuthenticator
文件夹路径如下所示:
/module
/Application
/Service
/MyService.php
/vendor/
/PHPGangsta
/GoogleAuthenticator.php
GoogleAuthenticator.php
有一个名为PHPGangsta_GoogleAuthenticator
的类,我想在MyService.php
中使用,而不必require
任何文件。
另外,我无法更改PHPGangsta
内的文件,因为该项目是在git下进行子模块化的。
你能帮忙配置zf2类自动加载吗?
答案 0 :(得分:0)
假设您使用Composer安装了ZF2(这是推荐的方法),请修改composer.json
以将phpgangsta/googleauthenticator
添加到require部分。然后运行composer install
。就是这样。然后,您应该可以在应用程序中使用该库 - 您不需要进行任何其他自动加载配置。