-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
52 lines (52 loc) · 1.38 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
50
51
52
{
"name":"terminal42/notification_center",
"description":"Notification Center extension for Contao Open Source CMS",
"keywords":["contao", "notification", "center"],
"type":"contao-module",
"license":"LGPL-3.0-or-later",
"authors":[
{
"name":"terminal42 gmbh",
"homepage":"http://terminal42.ch"
}
],
"require":{
"php":">=5.4",
"contao/core-bundle":"~3.2 || ~4.1",
"contao-community-alliance/composer-plugin":"~2.4 || ~3.0",
"codefog/contao-haste":"^4.14.1",
"terminal42/dcawizard":"2.*"
},
"require-dev": {
"cyberspectrum/contao-toolbox": "^0.7.2"
},
"autoload":{
"psr-0": {
"NotificationCenter\\": [
"library/"
]
},
"classmap": [
"classes/"
]
},
"replace": {
"contao-legacy/notification_center": "self.version"
},
"extra":{
"branch-alias": {
"dev-develop": "1.4.x-dev"
},
"contao": {
"sources":{
"": "system/modules/notification_center"
},
"transifex": {
"project": "notification_center",
"prefix": "master-notification_center-",
"languages_cto": "languages",
"languages_tx": ".tx"
}
}
}
}