-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 979 Bytes
/
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
{
"name":"stefansl/contao-lightgallery",
"description":"Lightgallery for Contao",
"keywords":["contao","lightbox", "vanillajs"],
"type":"contao-bundle",
"homepage":"https://clickpress.de",
"license":"MIT",
"authors":[
{
"name":"CLICKPRESS",
"homepage":"https://clickpress.de",
"role":"Developer"
}
],
"require":{
"php":">=7.0 || ^8.0",
"contao/core-bundle":"^4.13 || ^5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"extra":{
"contao-manager-plugin": "Clickpress\\LightgalleryBundle\\ContaoManager\\Plugin"
},
"conflict": {
"contao/core": "*",
"contao/core-bundle": "4.4.1",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload":{
"psr-4": {
"Clickpress\\LightgalleryBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/templates/"
]
}
}