-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.27 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
46
47
48
49
{
"name": "respinar/contao-owlcarousel",
"description": "Owl Carousel Bundle for Contao",
"keywords": ["contao", "Carousel","Slider","bundle"],
"type": "contao-bundle",
"homepage": "http://respinar.com",
"license": "MIT",
"authors": [
{
"name": "Hamid Peywasti",
"email": "[email protected]",
"homepage": "https://respinar.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/respinar/contao-owlcarousel/issues"
},
"require": {
"php": "^8.0",
"contao/core-bundle":"^4.13 || ^5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.12"
},
"autoload": {
"psr-4": {
"Respinar\\OwlCarouselBundle\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/config/",
"contao/dca/",
"contao/languages/",
"contao/templates/"
]
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": false
}
},
"extra": {
"contao-manager-plugin": "Respinar\\OwlCarouselBundle\\ContaoManager\\Plugin"
}
}