-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 835 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "sallycms/image-resize",
"description": "AddOn for SallyCMS, providing URL-based resizing and cropping for images",
"authors": [
{
"name": "webvariants GbR"
}
],
"homepage": "http://www.sallycms.de/",
"license": "MIT",
"type": "sallycms-addon",
"require": {
"php": ">=5.3.0",
"ext-gd": "*",
"sallycms/composer-installer": "~1.1",
"sallycms/sallycms": ">=0.9,<0.11"
},
"autoload": {
"psr-0": {
"sly\\ImageResize\\": "lib/",
"sly_Controller_": "lib/",
"JPEG_": "vendor/"
}
},
"extra": {
"sallycms": {
"version": "4.x-dev",
"imex-ignore": true
},
"branch-alias": {
"dev-default": "4.x-dev"
}
}
}