-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 933 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
39
40
41
42
43
{
"name": "chillerlan/php-teamspeak",
"description": "A simple teamspeak3 query client for PHP7.4+",
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"keywords": [
"teamspeak", "client"
],
"authors": [
{
"name": "smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-teamspeak/issues",
"source": "https://github.com/chillerlan/php-teamspeak"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"chillerlan/php-settings-container": "^2.1",
"psr/log": "^1.1"
},
"require-dev": {
"chillerlan/php-dotenv": "^2.1",
"phpunit/phpunit": "^9.5",
"phan/phan": "^4.0"
},
"autoload": {
"psr-4": {
"chillerlan\\Teamspeak\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\TeamspeakTest\\": "tests/",
"chillerlan\\TeamspeakExample\\": "example/"
}
}
}