├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── license.txt ├── src ├── Check.php └── SightengineClient.php └── tests ├── StackTest.php └── assets └── image.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/composer.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/license.txt -------------------------------------------------------------------------------- /src/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/src/Check.php -------------------------------------------------------------------------------- /src/SightengineClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/src/SightengineClient.php -------------------------------------------------------------------------------- /tests/StackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/tests/StackTest.php -------------------------------------------------------------------------------- /tests/assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sightengine/client-php/HEAD/tests/assets/image.jpg --------------------------------------------------------------------------------