58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
|
{
|
||
|
"name": "planetteamspeak/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": "scp@planetteamspeak.com"
|
||
|
}
|
||
|
],
|
||
|
"support": {
|
||
|
"email": "info@planetteamspeak.com",
|
||
|
"issues": "https://github.com/planetteamspeak/ts3phpframework/issues",
|
||
|
"docs": "https://docs.planetteamspeak.com/ts3/php/framework"
|
||
|
},
|
||
|
"config": {
|
||
|
"sort-packages": true
|
||
|
},
|
||
|
"require": {
|
||
|
"php": ">=8.1",
|
||
|
"ext-mbstring": "*",
|
||
|
"ext-json": "*",
|
||
|
"ext-ctype": "*",
|
||
|
"phpseclib/phpseclib": "^3.0",
|
||
|
"ext-openssl": "*"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"friendsofphp/php-cs-fixer": "^3.8",
|
||
|
"php-coveralls/php-coveralls": "^2.5",
|
||
|
"phpcompatibility/php-compatibility": "^9.3",
|
||
|
"phpunit/phpunit": "^9.5",
|
||
|
"react/socket": "^1.11",
|
||
|
"squizlabs/php_codesniffer": "^3.6",
|
||
|
"symfony/yaml": "^6.0"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"PlanetTeamSpeak\\TeamSpeak3Framework\\": "src/"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"PlanetTeamSpeak\\TeamSpeak3Framework\\Tests\\": "tests/"
|
||
|
}
|
||
|
},
|
||
|
"scripts": {
|
||
|
"compatibility": "\"vendor/bin/phpcs\" -ps --basepath=. --standard=PHPCompatibility --runtime-set testVersion 8.0- src",
|
||
|
"code-style": "\"vendor/bin/php-cs-fixer\" fix --config .php-cs-fixer.php --diff",
|
||
|
"tests": [
|
||
|
"\"vendor/bin/phpunit\" --no-coverage"
|
||
|
],
|
||
|
"coverage": "\"vendor/bin/phpunit\""
|
||
|
}
|
||
|
}
|