forked from sbpp/sourcebans-pp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (51 loc) · 1.55 KB
/
composer.json
File metadata and controls
52 lines (51 loc) · 1.55 KB
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
{
"name": "sbpp/sourcebans-pp",
"description": "Admin, ban, and comms management system for the Source engine.",
"type": "project",
"keywords": [],
"homepage": "https://sbpp.github.io",
"readme": "https://github.com/sbpp/sourcebans-pp/blob/main/README.md",
"license": "Elastic-2.0",
"support": {
"issues": "https://github.com/sbpp/sourcebans-pp/issues",
"forum": "https://forums.alliedmods.net/forumdisplay.php?f=152",
"wiki": "https://sbpp.github.io/faq/",
"source": "https://github.com/sbpp/sourcebans-pp",
"docs": "https://sbpp.github.io/docs/",
"chat": "https://discord.gg/tzqYqmAtF5"
},
"config": {
"vendor-dir": "includes/vendor"
},
"require": {
"lcobucci/jwt": "^5.0",
"league/commonmark": "^2.5",
"maxmind-db/reader": "~1.0",
"smarty/smarty": "^v5.4",
"xpaw/php-source-query-class": "^6.0.0",
"symfony/mailer": "^8.0",
"ext-pdo": "*",
"ext-openssl": "*",
"php": ">=8.5",
"maennchen/zipstream-php": "^3.2"
},
"autoload": {
"psr-4": {
"Sbpp\\": "includes/"
}
},
"autoload-dev": {
"classmap": ["phpstan/"]
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^13",
"staabm/phpstan-dba": "^0.4"
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"api-contract": "php bin/generate-api-contract.php"
}
}