-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
63 lines (63 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "multitheftauto/mtasa-php-sdk",
"description": "MTA SDK to interact with MTA's server.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"homepage": "https://multitheftauto.com/",
"support": {
"chat": "https://discord.com/invite/mtasa",
"forum": "https://forum.multitheftauto.com",
"wiki": "https://wiki.multitheftauto.com/wiki/PHP_SDK"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^2.4",
"psr/http-factory": "^1.0"
},
"require-dev": {
"composer/package-versions-deprecated": "1.11.99.5",
"friendsofphp/php-cs-fixer": "^2.19",
"guzzlehttp/psr7": "^2.5",
"http-interop/http-factory-guzzle": "^1.2",
"infection/infection": "^0.21.5",
"php-http/mock-client": "^1.1",
"phpspec/prophecy": "~1.17",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9"
},
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"MultiTheftAuto\\Sdk\\": "src/"
}
},
"scripts": {
"infection": "infection",
"lint": "php-cs-fixer fix --verbose --show-progress=estimating",
"lint:check": [
"php-cs-fixer fix --dry-run --verbose --show-progress=estimating"
],
"phpunit": "phpunit tests",
"phpstan": "phpstan analyse",
"test": [
"@lint:check",
"@phpunit",
"@phpstan"
]
}
}