├── .github └── workflows │ ├── ci.yml │ └── pullrequest.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── downloads └── .gitkeep ├── phpunit.xml ├── src ├── Api.php ├── Client │ ├── Interfaced.php │ ├── OnlineConvertClient.php │ └── Resources.php ├── Configuration.php ├── Endpoint │ ├── Abstracted.php │ ├── ConversionEndpoint.php │ ├── EndpointFactory.php │ ├── InformationEndpoint.php │ ├── InputEndpoint.php │ ├── JobsEndpoint.php │ ├── OutputEndpoint.php │ ├── PresetsEndpoint.php │ ├── Resources.php │ └── StatisticsEndpoint.php ├── Exception │ ├── CallbackNotDefinedException.php │ ├── EndpointNotExistsException.php │ ├── FileNotExists.php │ ├── HTTPMethodNotAllowed.php │ ├── InvalidArgumentException.php │ ├── InvalidEngineException.php │ ├── InvalidStatusException.php │ ├── JobFailedException.php │ ├── JobNotFoundException.php │ ├── NoApiKeyDefined.php │ ├── OnlineConvertSdkException.php │ ├── OutputNotFound.php │ ├── RequestException.php │ └── StatusUnknownException.php ├── Handler │ └── CallbackHandler.php ├── Helper │ ├── FileSystemHelper.php │ ├── RequestHelper.php │ └── SpinRequestHelper.php ├── Model │ └── JobStatus.php └── SimpleJob.php └── tests ├── .gitkeep ├── Functional ├── DownloadFileTest.php ├── FunctionalTestCase.php ├── InformationEndpointTest.php ├── InputEndpointTest.php ├── JobInteractionTest.php ├── downloads │ └── .gitkeep └── files │ └── oc_logo.png ├── SimpleJob ├── SimpleJobTest.php └── SimpleJobTestCase.php └── Unit ├── Client └── OnlineConvertClientTest.php ├── Endpoint ├── Abstracted.php └── JobsEndpointTest.php ├── Handler └── CallbackTest.php ├── Helper ├── RequestHelperTest.php └── SpinRequestHelperTest.php └── Model └── JobStatusTest.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/.github/workflows/pullrequest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/Client/Interfaced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Client/Interfaced.php -------------------------------------------------------------------------------- /src/Client/OnlineConvertClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Client/OnlineConvertClient.php -------------------------------------------------------------------------------- /src/Client/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Client/Resources.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/Endpoint/Abstracted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/Abstracted.php -------------------------------------------------------------------------------- /src/Endpoint/ConversionEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/ConversionEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/EndpointFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/EndpointFactory.php -------------------------------------------------------------------------------- /src/Endpoint/InformationEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/InformationEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/InputEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/InputEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/JobsEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/JobsEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/OutputEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/OutputEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/PresetsEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/PresetsEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/Resources.php -------------------------------------------------------------------------------- /src/Endpoint/StatisticsEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Endpoint/StatisticsEndpoint.php -------------------------------------------------------------------------------- /src/Exception/CallbackNotDefinedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/CallbackNotDefinedException.php -------------------------------------------------------------------------------- /src/Exception/EndpointNotExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/EndpointNotExistsException.php -------------------------------------------------------------------------------- /src/Exception/FileNotExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/FileNotExists.php -------------------------------------------------------------------------------- /src/Exception/HTTPMethodNotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/HTTPMethodNotAllowed.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/InvalidEngineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/InvalidEngineException.php -------------------------------------------------------------------------------- /src/Exception/InvalidStatusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/InvalidStatusException.php -------------------------------------------------------------------------------- /src/Exception/JobFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/JobFailedException.php -------------------------------------------------------------------------------- /src/Exception/JobNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/JobNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/NoApiKeyDefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/NoApiKeyDefined.php -------------------------------------------------------------------------------- /src/Exception/OnlineConvertSdkException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/OnlineConvertSdkException.php -------------------------------------------------------------------------------- /src/Exception/OutputNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/OutputNotFound.php -------------------------------------------------------------------------------- /src/Exception/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/RequestException.php -------------------------------------------------------------------------------- /src/Exception/StatusUnknownException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Exception/StatusUnknownException.php -------------------------------------------------------------------------------- /src/Handler/CallbackHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Handler/CallbackHandler.php -------------------------------------------------------------------------------- /src/Helper/FileSystemHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Helper/FileSystemHelper.php -------------------------------------------------------------------------------- /src/Helper/RequestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Helper/RequestHelper.php -------------------------------------------------------------------------------- /src/Helper/SpinRequestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Helper/SpinRequestHelper.php -------------------------------------------------------------------------------- /src/Model/JobStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/Model/JobStatus.php -------------------------------------------------------------------------------- /src/SimpleJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/src/SimpleJob.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Functional/DownloadFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Functional/DownloadFileTest.php -------------------------------------------------------------------------------- /tests/Functional/FunctionalTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Functional/FunctionalTestCase.php -------------------------------------------------------------------------------- /tests/Functional/InformationEndpointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Functional/InformationEndpointTest.php -------------------------------------------------------------------------------- /tests/Functional/InputEndpointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Functional/InputEndpointTest.php -------------------------------------------------------------------------------- /tests/Functional/JobInteractionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Functional/JobInteractionTest.php -------------------------------------------------------------------------------- /tests/Functional/downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Functional/files/oc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Functional/files/oc_logo.png -------------------------------------------------------------------------------- /tests/SimpleJob/SimpleJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/SimpleJob/SimpleJobTest.php -------------------------------------------------------------------------------- /tests/SimpleJob/SimpleJobTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/SimpleJob/SimpleJobTestCase.php -------------------------------------------------------------------------------- /tests/Unit/Client/OnlineConvertClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Client/OnlineConvertClientTest.php -------------------------------------------------------------------------------- /tests/Unit/Endpoint/Abstracted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Endpoint/Abstracted.php -------------------------------------------------------------------------------- /tests/Unit/Endpoint/JobsEndpointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Endpoint/JobsEndpointTest.php -------------------------------------------------------------------------------- /tests/Unit/Handler/CallbackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Handler/CallbackTest.php -------------------------------------------------------------------------------- /tests/Unit/Helper/RequestHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Helper/RequestHelperTest.php -------------------------------------------------------------------------------- /tests/Unit/Helper/SpinRequestHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Helper/SpinRequestHelperTest.php -------------------------------------------------------------------------------- /tests/Unit/Model/JobStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlineconvert/onlineconvert-api-sdk-php/HEAD/tests/Unit/Model/JobStatusTest.php --------------------------------------------------------------------------------