使用 zend framework 2/3 组件的外部 zf 应用程序

use zend framework 2/3 component's outside zf app

我正在尝试在 zend 框架之外使用一些 zend 框架组件,但我无法这样做。

这是我的作曲文件。

{
  "require": {
      "zendframework/zend-authentication": "^2.5.3"
   },
   "autoload": {
       "psr-4": {
          "Zend\Authentication\": ""
       }
   }
}

我能够 运行 composer 更新和安装,它生成了 autoload.php。

但是当我尝试使用组件时,我得到 "Fatal error: Class 'Zend\Authentication\Storage\Session' not found"

$session = new \Zend\Authentication\Storage\Session();

我的设置中是否明显遗漏了什么?

我需要自动加载器

require __DIR__ . '/../vendor/autoload.php';

问题现已解决