-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1019 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": "smthdiff/contaoskeleton-bundle",
"description": "Skeleton for custom Contao 4 bundles",
"type": "contao-bundle",
"license": "MIT",
"authors": [
{
"name": "Christopher Stadler",
"email": "[email protected]",
"homepage": "https://github.com/cstadler333"
}
],
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.13"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"SmthDiff\\ContaoSkeletonBundle\\": "src/"
},
"classmap": [
"src/Resources/contao"
],
"exclude-from-classmap": [
"src/Resources/contao/config",
"src/Resources/contao/dca",
"src/Resources/contao/languages",
"src/Resources/contao/templates"
]
},
"extra": {
"contao-manager-plugin": "SmthDiff\\ContaoSkeletonBundle\\ContaoManager\\Plugin"
},
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/smthdiff/contaoskeleton-bundle/issues",
"source": "https://github.com/smthdiff/contaoskeleton-bundle"
}
}