forked from contao-community-alliance/events-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name":"designs2/events-cron",
"description":"Cron event for Contao Open Source CMS",
"keywords":["contao", "event", "cron"],
"type": "contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name":"Tristan Lins",
"email":"[email protected]",
"homepage":"http://bit3.de",
"role":"Developer"
}
],
"support":{
"email":"[email protected]",
"issues":"https://github.com/contao-community-alliance/events-cron/issues",
"wiki":"https://github.com/contao-community-alliance/events-cron/wiki",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/designs2/events-cron"
},
"require":{
"php":">=5.3",
"contao/core": ">=2.11,<4.0-dev",
"contao-community-alliance/composer-plugin": "*",
"designs2/event-dispatcher": "*"
},
"autoload":{
"psr-0":{
"ContaoCommunityAlliance\\Contao\\Events\\Cron": "src/"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/events-cron"
}
},
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
}
}
}