├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json └── src └── KasApi ├── KasApi.php ├── KasApiException.php ├── KasConfiguration.php └── KasSoapClient.php /.gitignore: -------------------------------------------------------------------------------- 1 | atlassian-ide-plugin.xml 2 | .idea 3 | .gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/KasApi/KasApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/src/KasApi/KasApi.php -------------------------------------------------------------------------------- /src/KasApi/KasApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/src/KasApi/KasApiException.php -------------------------------------------------------------------------------- /src/KasApi/KasConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/src/KasApi/KasConfiguration.php -------------------------------------------------------------------------------- /src/KasApi/KasSoapClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waza-ari/kasapi-php/HEAD/src/KasApi/KasSoapClient.php --------------------------------------------------------------------------------