├── .gitignore ├── README.md ├── autoload.php ├── composer.json └── src ├── API.php ├── Convertio.php └── Exceptions ├── APIException.php └── CURLException.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | vendor 4 | docs 5 | test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/autoload.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/src/API.php -------------------------------------------------------------------------------- /src/Convertio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/src/Convertio.php -------------------------------------------------------------------------------- /src/Exceptions/APIException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/src/Exceptions/APIException.php -------------------------------------------------------------------------------- /src/Exceptions/CURLException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Convertio/convertio-php/HEAD/src/Exceptions/CURLException.php --------------------------------------------------------------------------------