供应商内部的Cant运行工具(PHP-Auth / delight-im)

时间:2019-04-13 10:27:44

标签: php composer-php autoload

我正在尝试运行此密码验证https://github.com/delight-im/PHP-Auth#creating-a-new-instance

我也按照作曲家的指导学习。

目录:

Main
   |
   ->src
   |   |
   |   ->tools
   |         |
   |         ->authentication
   |         |
   |         ->db
   |
   ->vendor 

作曲家

 {
"name": "***",
"autoload": {
    "psr-4": {
        "Source\\": "src/"
    }
},
"authors": [
    {
        "name": "***",
        "email": "***"
    }
],
"require": {
    "delight-im/auth": "dev-master",
    "cboden/ratchet": "^0.4",
    "laravel/laravel": "^5.8",
    "twig/twig":"^2.0",
}

}

身份验证文件夹中的文件

require_once "../../../vendor/autoload.php";

use Source\tools\db;

$dbConfig = new db\dbconfig("users");

$credentials = $dbConfig->setDb();

$pdo_connection =  new PDO("mysql:host=$localhost;dbname=$database_schema",
                   $credentials["UserName"], $credentials["PassWord"]);

$auth = new \Delight\Auth\Auth($pdo_connection);

db文件夹中的文件

namespace Source\tools\db;
class dbconfig  
{
  .....
}

我可以使用 use Source \ tools \ db; 定义 dbconfig ,所以我想自动加载对此功能有效。

但是当尝试使用此行代码时 $ auth = new \ Delight \ Auth \ Auth($ pdo_connection); ,我得到以下错误: 致命错误:未捕获错误:在(出于保密目的删除目录)/src/tools/authentication/validate_login_credentials.php:17中找不到类“ Delight \ Auth \ Auth” strong>

我是命名空间/撰写者的新手,请原谅我对此的无知。

有人知道如何解决此错误吗?

1 个答案:

答案 0 :(得分:1)

我刚刚尝试过,并且它以这种方式工作,在顶部

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

之后,数据库配置

$db = new \PDO('mysql:dbname=my-database;host=localhost;charset=utf8mb4', 'my-username', 'my-password');

$auth = new \Delight\Auth\Auth($db);

echo get_class($auth);

没有错误,请仔细检查您的供应商自动加载文件,看来您输入的路径错误。

使用以下内容更新您的作曲家文件

"require": {
    "delight-im/auth": "dev-master", // "delight-im/auth": "^8.1"
    "cboden/ratchet": "^0.4",
    "laravel/laravel": "^5.8",
    "twig/twig":"^2.0",
 }

替换

"delight-im/auth": "dev-master",

使用

"delight-im/auth": "^8.1"

保存并执行作曲家更新命令。