forked from terminal42/contao-notification_center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.22 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
{
"name":"terminal42/notification_center",
"description":"Notification Center extension for Contao Open Source CMS",
"keywords":["contao", "notification", "center"],
"type":"contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name":"terminal42 gmbh",
"homepage":"http://terminal42.ch"
}
],
"require":{
"php":">=5.3.2",
"contao/core-bundle":"~3.2 || ~4.1",
"contao-community-alliance/composer-plugin":"~2.4 || ~3.0",
"codefog/contao-haste":"^4.10.0",
"terminal42/dcawizard":"2.*"
},
"autoload":{
"psr-0": {
"NotificationCenter\\": [
"library/"
]
},
"classmap": [
"classes/"
]
},
"replace": {
"contao-legacy/notification_center": "self.version"
},
"extra":{
"contao": {
"sources":{
"": "system/modules/notification_center"
},
"transifex": {
"project": "notification_center",
"prefix": "master-notification_center-",
"languages_cto": "languages",
"languages_tx": ".tx"
}
}
}
}