-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·38 lines (38 loc) · 1.25 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": "siebird/craft-watchtower",
"description": "Monitors the Craft queue manager for bottlenecks and send notifications emails",
"version": "1.0.2.2",
"type": "craft-plugin",
"keywords": ["craft", "cms", "craftcms", "craft-plugin", "siebird", "queue", "craft-queue", "queue-manager", "cron-job", "monitoring", "oh-dear", "ohdear"],
"license": "proprietary",
"authors": [
{
"name": "Siebird",
"homepage": "https://www.siebird.com/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/siebird/craft-watchtower/issues?state=open",
"source": "https://github.com/siebird/craft-watchtower",
"docs": "https://github.com/siebird/craft-watchtower"
},
"require": {
"craftcms/cms": "^3.3.0"
},
"autoload": {
"psr-4": {
"siebird\\WatchTower\\": "src/"
}
},
"extra": {
"handle": "watchtower",
"name": "Watchtower",
"developer": "Siebird",
"developerUrl": "https://www.siebird.com/",
"documentationUrl": "https://github.com/siebird/craft-watchtower/blob/master/README.md",
"changelogUrl": "https://github.com/siebird/craft-watchtower/blob/master/CHANGELOG.md",
"downloadUrl": "https://github.com/siebird/craft-watchtower/archive/refs/heads/master.zip",
"class": "siebird\\WatchTower\\WatchTower"
}
}