diff --git a/REVISION.md b/REVISION.md index 2c8c909..4c1ad1c 100644 --- a/REVISION.md +++ b/REVISION.md @@ -8,6 +8,7 @@ Revision history v0.7.0.x (latest) ------------------------------------- +* Adding `composer.json` for publishing on packagist. * Add permalink to setup for comparing images with `webroot/compare/compare.php`, fix #92. * Allow space in filename by using `urlencode()` and allow space as valid filenam character. fix #91. * Support redirections for remote images, fix #87, fix #90. diff --git a/composer.json b/composer.json index 47841db..9b2b04d 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "mos/cimage", "type": "library", - "description": "Process, resize, filter images serverside", + "description": "Process, scale, resize, crop and filter images.", "keywords": ["image", "imageprocessing", "gd"], "homepage": "http://dbwebb.se/opensource/cimage", "license": "MIT", @@ -15,5 +15,8 @@ ], "require": { "php": ">=5.3" + }, + "autoload": { + "psr-0": { "UniqueGlobalClass": "" } } }