1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-01-17 11:08:14 +01:00
php-cimage/composer.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2015-06-29 19:39:05 +02:00
{
"name": "mos/cimage",
2015-06-29 19:39:05 +02:00
"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": {
2020-05-06 09:51:12 +02:00
"php": ">=5.3"
},
"suggest": {
"ext-curl": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-imagick": "*"
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
}
}