-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.38 KB
/
composer.json
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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "agoat/contao-deferredimages",
"description": "Contao 4 deferred images library",
"keywords": ["contao", "contao4", "contao-bundle", "plugin", "images", "image-processing"],
"type": "contao-bundle",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Arne Stappen (alias aGoat)",
"homepage": "https://agoat.xyz"
}
],
"support": {
"issues": "/~https://github.com/agoat/contao-deferredimages-bundle/issues",
"source": "/~https://github.com/agoat/contao-deferredimages-bundle"
},
"require": {
"php": "^7.1",
"ext-gd": "*",
"contao/core-bundle": "^4.4",
"contao/image": "^0.3.5",
"contao/imagine-svg": "^0.1.2 || ^0.2"
},
"replace": {
"contao-legacy/imageondemand": "*"
},
"autoload": {
"psr-4": {
"Agoat\\DeferredImagesBundle\\": "src/"
},
"classmap": [
"src/Resources/contao"
],
"exclude-from-classmap": [
"src/Resources/contao/config",
"src/Resources/contao/dca",
"src/Resources/contao/languages",
"src/Resources/contao/templates",
"../../contao/core-bundle/src/Resources/contao/library/Contao/Image.php"
]
},
"extra": {
"contao-manager-plugin": "Agoat\\DeferredImagesBundle\\ContaoManager\\Plugin"
}
}