├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Command.php ├── CommandInterface.php ├── Exception ├── CommandClientException.php ├── CommandException.php └── CommandServerException.php ├── HasDataTrait.php ├── Result.php ├── ResultInterface.php ├── ServiceClient.php ├── ServiceClientInterface.php └── ToArrayInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/composer.json -------------------------------------------------------------------------------- /src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/Command.php -------------------------------------------------------------------------------- /src/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/CommandInterface.php -------------------------------------------------------------------------------- /src/Exception/CommandClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/Exception/CommandClientException.php -------------------------------------------------------------------------------- /src/Exception/CommandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/Exception/CommandException.php -------------------------------------------------------------------------------- /src/Exception/CommandServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/Exception/CommandServerException.php -------------------------------------------------------------------------------- /src/HasDataTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/HasDataTrait.php -------------------------------------------------------------------------------- /src/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/Result.php -------------------------------------------------------------------------------- /src/ResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/ResultInterface.php -------------------------------------------------------------------------------- /src/ServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/ServiceClient.php -------------------------------------------------------------------------------- /src/ServiceClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/ServiceClientInterface.php -------------------------------------------------------------------------------- /src/ToArrayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/command/HEAD/src/ToArrayInterface.php --------------------------------------------------------------------------------