-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
38 lines (38 loc) · 904 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
37
38
{
"name": "warlof/seat-teamspeak",
"description": "This plugin provide an extension to the standard SeAT character Job which handle automatic graduation for Teamspeak user",
"type": "seat-plugin",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Warlof Tutsimo",
"email": "[email protected]"
},
{
"name": "Denngarr B'tarn",
"email": "[email protected]"
},
{
"name": "hderp886",
"email": "[email protected]"
}
],
"autoload":{
"psr-4":{
"Warlof\\Seat\\Connector\\Drivers\\Teamspeak\\": "src/"
}
},
"require": {
"ext-json": "*",
"warlof/seat-connector": "^2.1"
},
"extra": {
"laravel": {
"providers": [
"Warlof\\Seat\\Connector\\Drivers\\Teamspeak\\TeamspeakConnectorServiceProvider"
]
}
}
}