-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.02 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
{
"name" : "xraylp/contao-flickity-slider",
"description" : "Contao Module for the Flickity Slider by Metafizzy",
"type" : "contao-bundle",
"homepage" : "https://github.com/XRayLP/contao-flickity-slider",
"license" : "GPL-3.0",
"minimum-stability" : "stable",
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/XRayLP/contao-flickity-slider/issues",
"source" : "https://github.com/XRayLP/contao-flickity-slider"
},
"authors" : [{
"name" : "XRayLP",
"homepage" : "https://github.com/XRayLP",
"email" : "[email protected]",
"role" : "Project leader"
}
],
"require" : {
"php" : ">=7.0",
"contao/core-bundle" : "~4.4"
},
"keywords" : [
"slider",
"flickity",
"contao",
"metafizzy"
],
"autoload" : {
"psr-4" : {
"XRayLP\\Bundle\\FlickitySliderBundle\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"XRayLP\\Bundle\\FlickitySliderBundle\\Test\\" : "tests"
}
},
"extra" : {
"contao-manager-plugin": "XRayLP\\Bundle\\FlickitySliderBundle\\ContaoManagerPlugin"
}
}