-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.12 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "mistralys/cyberpunk-mod-db-php",
"description": "PHP classes to work with the Cyberpunk 2077 DB.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Sebastian Mordziol",
"email": "s.mordziol@mistralys.eu"
}
],
"autoload": {
"classmap": [
"src"
]
},
"autoload-dev": {
"classmap": [
"tests/CPMDBTests/TestClasses"
],
"files": [
"tools/functions.php",
"tools/detect-missing-tags.php",
"tools/generate-atelier-classes.php",
"tools/generate-tag-names.php",
"tools/build.php"
]
},
"require": {
"mistralys/application-utils-core": ">=2.3.3",
"mistralys/application-utils-collections": ">=1.1.2",
"mistralys/cyberpunk-mod-db": ">=2.3.0",
"mistralys/changelog-parser": ">=1.0.2",
"brick/event": ">=0.1.1",
"loupe/loupe": ">=0.7.0",
"ext-sqlite3": "*",
"php": ">=8.2"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": ">=11.3.5",
"phpstan/phpstan": ">=1.12.3",
"phpstan/phpstan-phpunit": ">=1.4.0"
}
}