├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Api.php ├── Client │ ├── Authorization.php │ ├── Client.php │ └── ClientInterface.php └── Exception │ └── ClientException.php └── tests ├── ApiTest.php └── Client ├── AuthorizationTest.php └── ClientTest.php /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/Client/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/src/Client/Authorization.php -------------------------------------------------------------------------------- /src/Client/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/src/Client/Client.php -------------------------------------------------------------------------------- /src/Client/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/src/Client/ClientInterface.php -------------------------------------------------------------------------------- /src/Exception/ClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/src/Exception/ClientException.php -------------------------------------------------------------------------------- /tests/ApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/tests/ApiTest.php -------------------------------------------------------------------------------- /tests/Client/AuthorizationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/tests/Client/AuthorizationTest.php -------------------------------------------------------------------------------- /tests/Client/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/esa-php/HEAD/tests/Client/ClientTest.php --------------------------------------------------------------------------------