-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.28 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.28 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
47
{
"name": "dept-of-scrapyard-robotics/gfx",
"description": "Graphics Library for PHP",
"type": "library",
"version": "0.2.0",
"keywords": [
"laravel",
"io",
"linux",
"embedded"
],
"license": "MIT",
"authors": [
{
"name": "Project Saturn Studios, LLC",
"email": "angel@projectsaturnstudios.com"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "*",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"phpunit/phpunit": "^12.0"
},
"suggest": {
"ext-gd": "Required for image processing",
"dept-of-scrapyard-robotics/scrapyard-io-framework": "Used in tandem with devices utilizing this package",
"dept-of-scrapyard-robotics/displays": "For use with device drivers."
},
"autoload": {
"psr-4": {
"ScrapyardIO\\Libraries\\GFX\\Core\\": "src/Core",
"ScrapyardIO\\Libraries\\GFX\\Fonts\\": "src/Fonts",
"ScrapyardIO\\Libraries\\GFX\\Support\\": "src/Support"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "stable"
}