├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── examples └── basic.php └── src └── FilePreviews ├── FilePreviews.php └── FilePreviewsClient.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/examples/basic.php -------------------------------------------------------------------------------- /src/FilePreviews/FilePreviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/src/FilePreviews/FilePreviews.php -------------------------------------------------------------------------------- /src/FilePreviews/FilePreviewsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filepreviews/filepreviews-php/HEAD/src/FilePreviews/FilePreviewsClient.php --------------------------------------------------------------------------------