├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── dev-bin └── release.sh ├── phpstan.neon └── src ├── Exception ├── AuthenticationException.php ├── HttpException.php ├── InsufficientFundsException.php ├── InvalidInputException.php ├── InvalidRequestException.php ├── IpAddressNotFoundException.php ├── PermissionRequiredException.php └── WebServiceException.php └── WebService ├── Client.php └── Http ├── CurlRequest.php ├── Request.php └── RequestFactory.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/composer.json -------------------------------------------------------------------------------- /dev-bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/dev-bin/release.sh -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Exception/InsufficientFundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/InsufficientFundsException.php -------------------------------------------------------------------------------- /src/Exception/InvalidInputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/InvalidInputException.php -------------------------------------------------------------------------------- /src/Exception/InvalidRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/InvalidRequestException.php -------------------------------------------------------------------------------- /src/Exception/IpAddressNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/IpAddressNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/PermissionRequiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/PermissionRequiredException.php -------------------------------------------------------------------------------- /src/Exception/WebServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/Exception/WebServiceException.php -------------------------------------------------------------------------------- /src/WebService/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/WebService/Client.php -------------------------------------------------------------------------------- /src/WebService/Http/CurlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/WebService/Http/CurlRequest.php -------------------------------------------------------------------------------- /src/WebService/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/WebService/Http/Request.php -------------------------------------------------------------------------------- /src/WebService/Http/RequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/web-service-common-php/HEAD/src/WebService/Http/RequestFactory.php --------------------------------------------------------------------------------