-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 969 Bytes
/
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
{
"name": "warlof/slackbot",
"description": "This plugin provide an extension to the standard SeAT character Job which handle automatic invitation to an existing Slack Team",
"type": "seat-plugin",
"autoload": {
"psr-4": {
"Warlof\\Seat\\Slackbot\\": "src/"
}
},
"require": {
"eveseat/services": "^3.0",
"eveseat/eveapi": "^3.0",
"eveseat/web": "^3.0",
"erusev/parsedown": "^1.7",
"predis/predis": "^1.1"
},
"require-dev": {
"satooshi/php-coveralls": "^1.0",
"codacy/coverage": "~1.0"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Warlof Tutsimo",
"email": "loic.leuilliot@gmail.com"
}
],
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Warlof\\Seat\\Slackbot\\SlackbotServiceProvider"
]
}
}
}