dongmu4591 2014-03-29 00:04
浏览 40
已采纳

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

How can I autoload Guzzle in Laravel 4?

I am encountering the following error when I try to create a new GuzzleHttp/Client:

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

I have the following set up in my composer.json autoload section:

autoload: {
    "psr-0": {
        "Guzzle\\": "src/"
    }
}
  • 写回答

1条回答 默认 最新

  • dpbv85276 2014-03-29 00:40
    关注

    You don't need to add Guzzle to your composer.json, it's already autoloaded by it's own composer.json.

    Guzzle 4

    PHP 5.4.x+ required

    composer require "guzzlehttp/guzzle" "~4.0"
    

    Create a client:

    $client = new \GuzzleHttp\Client();
    

    Get results:

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

    Guzzle 3

    Install it:

    composer require "guzzle/guzzle" "~3.0"
    

    Create a client setting the base URL:

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

    Get your response:

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

    And display it:

    dd($response);
    

    If you still don't get it running, check the file vendor/composer/autoload_psr4.php, Guzzle must appear in it. If it doesn't, remove your vendor folder and install it again:

    rm -rf vendor
    rm composer.lock
    composer install
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类