gpt4 book ai didi

php - 如何在 Laravel 4 中自动加载 Guzzle?

转载 作者:IT王子 更新时间:2023-10-29 01:18:45 25 4
gpt4 key购买 nike

如何自动加载 Guzzle在 Laravel 4 中?

我在尝试创建新的 GuzzleHttp/Client 时遇到以下错误:

Symfony \ Component \ Debug \ Exception \ FatalErrorException
Class 'GuzzleHttp\Client' not found

我在 composer.json 自动加载部分设置了以下内容:

autoload: {
"psr-0": {
"Guzzle\\": "src/"
}
}

最佳答案

您不需要将 Guzzle 添加到您的 composer.json,它已经由它自己的 composer.json 自动加载。

Guzzle 4

需要 PHP 5.4.x+

composer require "guzzlehttp/guzzle" "~4.0"

创建客户端:

$client = new \GuzzleHttp\Client();

获取结果:

$response = $client->get('http://api.github.com/users/antonioribeiro');

dd($response->getBody());

Guzzle 3

安装它:

composer require "guzzle/guzzle" "~3.0"

创建一个设置基本 URL 的客户端:

$client = new \Guzzle\Service\Client('http://api.github.com/users/');

得到你的回应:

$username = 'antonioribeiro';

$response = $client->get("users/$username")->send();

并显示它:

dd($response);

如果还是不能运行,请检查文件 vendor/composer/autoload_psr4.php,Guzzle 必须出现在其中。如果没有,请删除您的供应商文件夹并重新安装:

rm -rf vendor
rm composer.lock
composer install

关于php - 如何在 Laravel 4 中自动加载 Guzzle?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22725266/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com