未找到Composer PSR-4 Autoload类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了未找到Composer PSR-4 Autoload类相关的知识,希望对你有一定的参考价值。

我一直在打我的头几个小时试图弄清楚为什么自动加载不适用于“Authentication auth()”。 “dBase db()”类加载得很好,但我得到:

错误:第8行的/var/htdocs/dev/test.php中找不到类'Authentication auth'

在调用test.php时。

file_structure

Root composer.json -

  "require": {
    "geeshoe/dbClass": "dev-develop",
    "geeshoe/authClass": "dev-master"
  },
  "autoload": {
    "psr-4": {
      "dBase": "vendor/geeshoe/dbclass/",
      "Authentication": "vendor/geeshoe/authClass/"
    }
  }

authClass.php标题 -

<?php
namespace Authentication;

use dBasedb;

class auth extends db
{

test.php -

if (file_exists("vendor/autoload.php")) {
    require "vendor/autoload.php";
} else {
    echo "Dam.. Something went wrong!";
}
$test = new dBasedb();
$var = new Authenticationauth();

如果有人可以向我指出显而易见的事情,那就太好了。另外,在authClass-> composer.json文件中未指定自动加载以进行测试。

答案

这里的问题是,实际上你不使用PSR-4。在PSR-4中,类名应与文件名匹配。对于db类它很好,因为db类位于db.php文件中,但auth类位于authClass.php文件中,这就是问题所在。您应该将文件名更新为auth.php

您可能需要运行:

composer dump-autoload

另外在实际包中请记住,一个供应商包有一个名称空间,因此您不会为单个包创建多个名称空间,而只能创建单个名称空间

以上是关于未找到Composer PSR-4 Autoload类的主要内容,如果未能解决你的问题,请参考以下文章

使用PSR-4配合composer autoload 自动加载文件夹

Composer psr-4 自动加载问题

未找到Silex控制器

本地目录自动加载 - “未找到类”

composer+psr-4实现自动加载

PSR-4 自动加载如何在 composer 中为自定义库工作?