├── .editorconfig ├── .github └── workflows │ ├── coverage.yml │ ├── test.yml │ └── wiki.yml ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── sample ├── README.md ├── file_management │ └── index.php ├── metadata │ └── index.php ├── sample.php ├── sample_image.jpeg ├── upload_api │ ├── index.php │ └── sample_image.jpeg ├── url_generation │ ├── chained_transformations.php │ ├── image_enhancement_and_color_manipulation.php │ ├── index.php │ ├── resize_crop_other_common_transformations.php │ └── signed_url.php └── utility │ └── index.php └── src └── ImageKit ├── Configuration └── Configuration.php ├── Constants ├── Endpoints.php ├── ErrorMessages.php └── SupportedTransforms.php ├── ImageKit.php ├── Manage ├── Cache.php ├── CustomMetadataFields.php ├── File.php └── Folder.php ├── Phash └── Phash.php ├── Resource ├── GuzzleHttpWrapper.php └── HttpRequest.php ├── Signature └── Signature.php ├── Upload └── Upload.php ├── Url └── Url.php └── Utils ├── Authorization.php ├── Response.php └── Transformation.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/.github/workflows/wiki.yml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/composer.lock -------------------------------------------------------------------------------- /sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/README.md -------------------------------------------------------------------------------- /sample/file_management/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/file_management/index.php -------------------------------------------------------------------------------- /sample/metadata/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/metadata/index.php -------------------------------------------------------------------------------- /sample/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/sample.php -------------------------------------------------------------------------------- /sample/sample_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/sample_image.jpeg -------------------------------------------------------------------------------- /sample/upload_api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/upload_api/index.php -------------------------------------------------------------------------------- /sample/upload_api/sample_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/upload_api/sample_image.jpeg -------------------------------------------------------------------------------- /sample/url_generation/chained_transformations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/url_generation/chained_transformations.php -------------------------------------------------------------------------------- /sample/url_generation/image_enhancement_and_color_manipulation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/url_generation/image_enhancement_and_color_manipulation.php -------------------------------------------------------------------------------- /sample/url_generation/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/url_generation/index.php -------------------------------------------------------------------------------- /sample/url_generation/resize_crop_other_common_transformations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/url_generation/resize_crop_other_common_transformations.php -------------------------------------------------------------------------------- /sample/url_generation/signed_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/url_generation/signed_url.php -------------------------------------------------------------------------------- /sample/utility/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/sample/utility/index.php -------------------------------------------------------------------------------- /src/ImageKit/Configuration/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Configuration/Configuration.php -------------------------------------------------------------------------------- /src/ImageKit/Constants/Endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Constants/Endpoints.php -------------------------------------------------------------------------------- /src/ImageKit/Constants/ErrorMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Constants/ErrorMessages.php -------------------------------------------------------------------------------- /src/ImageKit/Constants/SupportedTransforms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Constants/SupportedTransforms.php -------------------------------------------------------------------------------- /src/ImageKit/ImageKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/ImageKit.php -------------------------------------------------------------------------------- /src/ImageKit/Manage/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Manage/Cache.php -------------------------------------------------------------------------------- /src/ImageKit/Manage/CustomMetadataFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Manage/CustomMetadataFields.php -------------------------------------------------------------------------------- /src/ImageKit/Manage/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Manage/File.php -------------------------------------------------------------------------------- /src/ImageKit/Manage/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Manage/Folder.php -------------------------------------------------------------------------------- /src/ImageKit/Phash/Phash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Phash/Phash.php -------------------------------------------------------------------------------- /src/ImageKit/Resource/GuzzleHttpWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Resource/GuzzleHttpWrapper.php -------------------------------------------------------------------------------- /src/ImageKit/Resource/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Resource/HttpRequest.php -------------------------------------------------------------------------------- /src/ImageKit/Signature/Signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Signature/Signature.php -------------------------------------------------------------------------------- /src/ImageKit/Upload/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Upload/Upload.php -------------------------------------------------------------------------------- /src/ImageKit/Url/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Url/Url.php -------------------------------------------------------------------------------- /src/ImageKit/Utils/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Utils/Authorization.php -------------------------------------------------------------------------------- /src/ImageKit/Utils/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Utils/Response.php -------------------------------------------------------------------------------- /src/ImageKit/Utils/Transformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-php/HEAD/src/ImageKit/Utils/Transformation.php --------------------------------------------------------------------------------