Zend Framework 2加载类PHPGangsta_GoogleAuthenticator

时间:2015-11-05 13:46:55

标签: php zend-framework2

我正在尝试在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类自动加载吗?

1 个答案:

答案 0 :(得分:0)

假设您使用Composer安装了ZF2(这是推荐的方法),请修改composer.json以将phpgangsta/googleauthenticator添加到require部分。然后运行composer install。就是这样。然后,您应该可以在应用程序中使用该库 - 您不需要进行任何其他自动加载配置。