-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.03 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "dept-of-scrapyard-robotics/game-engine",
"description": "Godot-inspired scene tree and node system for embedded displays",
"type": "library",
"version": "0.2.0",
"keywords": ["laravel", "io", "linux", "embedded", "gfx", "game-engine", "scene-tree"],
"license": "MIT",
"authors": [
{
"name": "Project Saturn Studios, LLC",
"email": "angel@projectsaturnstudios.com"
}
],
"require": {
"php": "^8.3",
"dept-of-scrapyard-robotics/displays": "^0.2.0",
"dept-of-scrapyard-robotics/gfx": "^0.2.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "*",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"ScrapyardIO\\Libraries\\GameEngine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "stable"
}