在magento2中实现此https://github.com/maidmaid/zoho时遇到问题。剩下的所有依赖关系都解决了,但是从作曲家那里,它不是只读取GuzzleHttp \ Client类,而是在第24行的/vendor/Maidmaid/Zoho/Client.php中给出错误“未捕获的错误:找不到类'GuzzleHttp \ Client'”
autoload_static.php定义
'GuzzleHttp\\' =>
array (
0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
),
并在autoload_psr4中定义了此
'Maidmaid\\Zoho\\' => array($vendorDir . '/maidmaid/zoho/src'),
'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
请有人帮助我解决此问题。
谢谢
答案 0 :(得分:1)
您必须使用composer安装Guzzle软件包。
首先转到您的项目目录,然后使用此命令安装guzzle
composer require guzzlehttp/guzzle
答案 1 :(得分:0)
尝试在行下方添加
require_once 'vendor/autoload.php'