-
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) · 906 Bytes
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 906 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
41
42
43
44
45
46
{
"name": "reinder83/satisfactory-api",
"description": "API Client for Satisfactory dedicated servers",
"keywords": [
"API",
"client",
"Satisfactory",
"server",
"dedicated"
],
"homepage": "https://github.com/reinder83/SatisfactoryAPI",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Reinder Reinders",
"email": "reinder.reinders@gmail.com"
}
],
"autoload": {
"psr-4": {
"SatisfactoryAPI\\": "src/"
}
},
"config": {
"platform": {
"php": "8.3"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"saloonphp/saloon": "^3.9",
"dragon-code/simple-dto": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.11",
"symfony/var-dumper": "^7.2"
},
"autoload-dev": {
"psr-4": {
"SatisfactoryAPI\\Tests\\": "tests/"
}
}
}