-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
66 lines (66 loc) · 1.51 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
64
65
66
{
"name": "evotm/evosc",
"type": "project",
"description": "EvoSC is a modern server controller for the game Trackmania² and TM2020.",
"keywords": [
"Evo",
"Maniaplanet",
"Trackmania"
],
"license": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License",
"homepage": "https://github.com/EvoTM/EvoSC",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/EvoTM/gbx.git"
},
{
"type": "vcs",
"url": "https://github.com/EvoTM/dedicated-server-api.git"
}
],
"require": {
"php": "^7.4",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"maniaplanet/dedicated-server-api": "dev-master",
"symfony/console": "^5.2",
"guzzlehttp/guzzle": "^6.3",
"latte/latte": "^2.10",
"symfony/process": "^4.2",
"symfony/event-dispatcher": "^4.2",
"composer/ca-bundle": "^1.1",
"manialib/gbx": "^4.1",
"larapack/dd": "^1.1",
"illuminate/container": "^8.27",
"illuminate/database": "^8.27",
"mexitek/phpcolors": "^1.0",
"league/csv": "^9.7",
"doctrine/dbal": "^3.3"
},
"scripts": {
"pre-install-cmd": [
"php core/required_directories.php"
]
},
"autoload": {
"psr-4": {
"EvoSC\\": "core/",
"EvoSC\\Modules\\": [
"core/Modules/",
"modules/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"config": {
"platform": {
"php": "7.4"
}
}
}