├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Description.php ├── DescriptionInterface.php ├── Deserializer.php ├── GuzzleClient.php ├── Handler └── ValidatedDescriptionHandler.php ├── Operation.php ├── Parameter.php ├── QuerySerializer ├── QuerySerializerInterface.php └── Rfc3986Serializer.php ├── RequestLocation ├── AbstractLocation.php ├── BodyLocation.php ├── FormParamLocation.php ├── HeaderLocation.php ├── JsonLocation.php ├── MultiPartLocation.php ├── QueryLocation.php ├── RequestLocationInterface.php └── XmlLocation.php ├── ResponseLocation ├── AbstractLocation.php ├── BodyLocation.php ├── HeaderLocation.php ├── JsonLocation.php ├── ReasonPhraseLocation.php ├── ResponseLocationInterface.php ├── StatusCodeLocation.php └── XmlLocation.php ├── SchemaFormatter.php ├── SchemaValidator.php └── Serializer.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/composer.json -------------------------------------------------------------------------------- /src/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/Description.php -------------------------------------------------------------------------------- /src/DescriptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/DescriptionInterface.php -------------------------------------------------------------------------------- /src/Deserializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/Deserializer.php -------------------------------------------------------------------------------- /src/GuzzleClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/GuzzleClient.php -------------------------------------------------------------------------------- /src/Handler/ValidatedDescriptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/Handler/ValidatedDescriptionHandler.php -------------------------------------------------------------------------------- /src/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/Operation.php -------------------------------------------------------------------------------- /src/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/Parameter.php -------------------------------------------------------------------------------- /src/QuerySerializer/QuerySerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/QuerySerializer/QuerySerializerInterface.php -------------------------------------------------------------------------------- /src/QuerySerializer/Rfc3986Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/QuerySerializer/Rfc3986Serializer.php -------------------------------------------------------------------------------- /src/RequestLocation/AbstractLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/AbstractLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/BodyLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/BodyLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/FormParamLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/FormParamLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/HeaderLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/HeaderLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/JsonLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/JsonLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/MultiPartLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/MultiPartLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/QueryLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/QueryLocation.php -------------------------------------------------------------------------------- /src/RequestLocation/RequestLocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/RequestLocationInterface.php -------------------------------------------------------------------------------- /src/RequestLocation/XmlLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/RequestLocation/XmlLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/AbstractLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/AbstractLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/BodyLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/BodyLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/HeaderLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/HeaderLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/JsonLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/JsonLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/ReasonPhraseLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/ReasonPhraseLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/ResponseLocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/ResponseLocationInterface.php -------------------------------------------------------------------------------- /src/ResponseLocation/StatusCodeLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/StatusCodeLocation.php -------------------------------------------------------------------------------- /src/ResponseLocation/XmlLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/ResponseLocation/XmlLocation.php -------------------------------------------------------------------------------- /src/SchemaFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/SchemaFormatter.php -------------------------------------------------------------------------------- /src/SchemaValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/SchemaValidator.php -------------------------------------------------------------------------------- /src/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzzle/guzzle-services/HEAD/src/Serializer.php --------------------------------------------------------------------------------