-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 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
{
"name":"contao-dms/dms",
"description":"Provides a document management system for the Contao CMS. It offers the possibility to store versioned files in an unlimited category structure.",
"keywords":["contao", "dms", "document", "management", "files"],
"type":"contao-module",
"homepage":"https://github.com/ContaoDMS",
"license":"LGPL-3.0-or-later",
"authors":[
{
"name":"Cliff Parnitzky",
"email":"[email protected]",
"role":"Developer"
}
],
"support":{
"email":"[email protected]",
"issues":"https://github.com/ContaoDMS/dms/issues",
"source":"https://github.com/ContaoDMS/dms"
},
"require":{
"php":"~7.1 || ~8.1",
"contao/core-bundle":"~4.13",
"contao-community-alliance/composer-plugin":"~3.0"
},
"extra":{
"contao":{
"sources":{
"system/modules/DocumentManagementSystem":"system/modules/DocumentManagementSystem"
},
"runonce": [
"system/modules/DocumentManagementSystem/config/initialize.php"
]
},
"branch-alias": {
"dev-master": "3.3.x-dev"
}
}
}