├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── yclients-logo-social.png └── yclients-logo.png ├── composer.json └── src └── Yclients ├── YclientsApi.php ├── YclientsException.php ├── YclientsRequest.php └── cacert.pem /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | examples/ 3 | logs/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/README.md -------------------------------------------------------------------------------- /assets/yclients-logo-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/assets/yclients-logo-social.png -------------------------------------------------------------------------------- /assets/yclients-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/assets/yclients-logo.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Yclients/YclientsApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/src/Yclients/YclientsApi.php -------------------------------------------------------------------------------- /src/Yclients/YclientsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/src/Yclients/YclientsException.php -------------------------------------------------------------------------------- /src/Yclients/YclientsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/src/Yclients/YclientsRequest.php -------------------------------------------------------------------------------- /src/Yclients/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/yclients-api-php/HEAD/src/Yclients/cacert.pem --------------------------------------------------------------------------------