{
	"name": "xpaw/php-source-query-class",
	"description": "PHP library to query and send RCON commands to servers based on \"Source Engine Query\" protocol",
	"homepage": "https://github.com/xPaw/PHP-Source-Query",
	"type": "library",
	"license": "LGPL-2.1",
	"keywords":
	[
		"rcon",
		"minecraft",
		"csgo",
		"counter-strike",
		"team fortress",
		"starbound",
		"rust",
		"ark",
		"gmod"
	],
	"require":
	{
		"php": ">=7.4",
		"ext-bz2":  ">=7.4",
		"ext-gmp":  ">=7.4",
		"ext-json":  ">=7.4"
	},
	"require-dev":
	{
		"phpunit/phpunit": "^9.5",
		"vimeo/psalm": "^4.7",
		"phpstan/phpstan": "^0.12.83",
		"friendsofphp/php-cs-fixer": "^3.0"
	},
	"autoload":
	{
		"psr-4":
		{
			"xPaw\\SourceQuery\\": "SourceQuery/"
		}
	},
	"scripts": {
		"psalm": "psalm",
		"phpstan": "phpstan",
		"phpunit": "phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning",
		"php-cs-fixer": "php-cs-fixer fix --config=.php-cs-fixer.php"
	}
}