-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (48 loc) · 1.51 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
45
46
47
48
{
"name": "herrsammyde/ts3-php-framework",
"type": "library",
"description": "Modern use-at-will framework that provides individual components to manage TeamSpeak 3 Server instances",
"keywords": ["ts3", "teamspeak","server","query","filetransfer","management","interface","api"],
"homepage": "https://www.planetteamspeak.com",
"license": "GPL-3.0",
"authors": [
{
"name": "Sven 'ScP' Paulsen",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/planetteamspeak/ts3phpframework/issues",
"docs": "https://docs.planetteamspeak.com/ts3/php/framework"
},
"require": {
"php": ">=5.2.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0",
"satooshi/php-coveralls": "^1.1 || ^2.0",
"friendsofphp/php-cs-fixer": "^2.0.0",
"react/socket": "^0.8.5",
"symfony/yaml": "~2.1|~3.0|~4.0",
"squizlabs/php_codesniffer": "^3.3",
"phpcompatibility/php-compatibility": "^8.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4"
},
"autoload": {
"files": ["libraries/TeamSpeak3/TeamSpeak3.php"]
},
"autoload-dev": {
"psr-0": {
"": "libraries/"
},
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"compatibility": "./vendor/bin/phpcs -ps --basepath=. --standard=PHPCompatibility --runtime-set testVersion 5.2- libraries/TeamSpeak3",
"test": "./vendor/bin/phpunit --no-coverage",
"coverage": "./vendor/bin/phpunit"
}
}