-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 1004 Bytes
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
{
"name": "vzgcoders/verifier-server",
"description": "Valithor's official webserver for BYOND user verification.",
"license": "MIT",
"authors": [
{
"name": "Valithor Obsidion",
"email": "valithor@valzargaming.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"vlucas/phpdotenv": "^5.4",
"react/http": "^1.6",
"monolog/monolog": "^2.1.1 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"suggest": {
"ext-pcntl": "Enables process control support for better server management on non-Windows systems when not leveraging ReactPHP"
},
"autoload": {
"psr-4": {
"Discord\\": "src/Discord/",
"SS14\\": "src/SS14/",
"VerifierServer\\": "src/VerifierServer/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}