How to include Guzzle in a wordpress theme/plugin How to include Guzzle in a wordpress theme/plugin wordpress wordpress

How to include Guzzle in a wordpress theme/plugin


What about composer autoload?

  1. Simply Require Guzzle packagist repo with composer

     composer require guzzlehttp/guzzle
  2. Install

     composer install
  3. Simply autoload Guzzle Classes in your Wordpress plugin

     require 'vendor/autoload.php'; //use GuzzleHttp\Client;