-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 958 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 958 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
37
38
39
40
{
"name": "mistralys/x4-savegame-parser",
"description": "Savegame parser for X4: Foundations. Convert relevant parts of the XML file and access useful game information.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Sebastian Mordziol",
"email": "s.mordziol@mistralys.eu"
}
],
"autoload": {
"classmap": [
"src"
]
},
"autoload-dev": {
"classmap": [
"tests/classes"
]
},
"require": {
"mistralys/x4-core": ">=0.0.6",
"mistralys/version-parser": ">=1.0.0",
"mistralys/application-localization": ">=1.4.1",
"react/http": ">=v1.9.0",
"react/async": ">=v3.0.0",
"league/climate": "^3.8.2",
"ext-xmlreader": "*",
"ext-dom": "*",
"php": ">=8.4.0"
},
"require-dev": {
"phpunit/phpunit": ">=9.6.7",
"phpstan/phpstan": ">=1.10",
"roave/security-advisories": "dev-latest",
"ext-zlib": "*"
}
}