gitextract_6fwc20wd/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Vagrantfile ├── composer.json ├── docs/ │ └── .gitkeep ├── phpdoc.dist.xml ├── phpunit.xml.dist ├── src/ │ ├── Command/ │ │ ├── Command.php │ │ └── CommandInterface.php │ └── Http/ │ ├── Client.php │ ├── ClientInterface.php │ ├── Driver/ │ │ ├── CurlDriver.php │ │ └── DriverInterface.php │ └── Message/ │ ├── Message.php │ ├── Request.php │ ├── Response.php │ ├── Streamable.php │ └── Uri.php └── tests/ ├── Command/ │ └── CommandTest.php └── Http/ ├── ClientTest.php └── Driver/ └── CurlDriverTest.php