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

2022-08-30 16:05:16

如何在Laravel 4中自动加载Guzzle

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

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

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

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

答案 1

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

咕噜咕噜 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());

咕噜咕噜 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);

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

rm -rf vendor
rm composer.lock
composer install

答案 2

推荐