-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.5 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.5 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
{
"name": "vzgcoders/civilizationbot",
"description": "Civ13's offical Discord bot built in ReactPHP.",
"authors": [
{
"name": "Valithor Obsidion",
"email": "valithor@valzargaming.com"
}
],
"require": {
"php": "^8.2.0",
"team-reflex/discord-php": "dev-master",
"clue/redis-react": "^2.6",
"react/filesystem": "^0.2@dev",
"react/async": "4.x-dev",
"react/child-process": "^0.6.6",
"vzgcoders/twitchphp": "dev-main",
"valzargaming/byond": "dev-main",
"valzargaming/handler": "dev-main",
"vzgcoders/verifier-server": "dev-main",
"wyrihaximus/react-cache-redis": "^4.5"
},
"suggest": {
"ext-uv": "For a faster, and more performant loop. PHP >=7 only. Preferred.",
"ext-libev": "For a faster, and more performant loop.",
"ext-event": "For a faster, and more performant loop.",
"ext-mbstring": "For accurate calculations of string length when handling non-english characters."
},
"scripts": {
"cs": ["./vendor/bin/php-cs-fixer fix"],
"unit": ["./vendor/bin/phpunit"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"wyrihaximus/composer-update-bin-autoload-path": true
}
},
"autoload": {
"psr-4": {
"Civ13\\": "src/Civ13/",
"Civ14\\": "src/Civ14/",
"Discord\\": "src/Discord/"
}
}
}