1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-01-17 19:18:15 +01:00
php-cimage/composer.json

43 lines
1.0 KiB
JSON
Raw Normal View History

2015-06-29 19:39:05 +02:00
{
"name": "mos/cimage",
"type": "library",
2015-07-20 21:16:53 +02:00
"description": "Process, scale, resize, crop and filter images.",
2015-06-29 19:39:05 +02:00
"keywords": ["image", "imageprocessing", "gd"],
"homepage": "http://dbwebb.se/opensource/cimage",
"license": "MIT",
"authors": [
{
"name": "Mikael Roos",
"email": "me@mikaelroos.se",
"homepage": "http://mikaelroos.se",
"role": "Developer"
}
],
2015-07-20 21:52:41 +02:00
"support": {
"issues": "https://github.com/mosbth/cimage/issues",
"docs": "http://dbwebb.se/opensource/cimage"
},
2015-06-29 19:39:05 +02:00
"require": {
"php": ">=5.3",
"ext-gd": "*"
},
"suggest": {
"ext-exif": "*"
2015-07-20 21:16:53 +02:00
},
"autoload": {
2016-08-08 09:29:26 +02:00
"files": [
"defines.php",
"functions.php"
],
"classmap": [
2015-07-20 21:56:56 +02:00
"CImage.php",
"CHttpGet.php",
"CRemoteImage.php",
"CWhitelist.php",
2015-12-06 20:45:44 +01:00
"CAsciiArt.php",
2016-08-08 10:39:11 +02:00
"CCache.php",
2016-08-08 09:29:26 +02:00
"CFastTrackCache.php"
2015-07-20 21:56:56 +02:00
]
2015-06-29 19:39:05 +02:00
}
}