-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
78 lines (78 loc) · 2.58 KB
/
composer.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "serafim/opengl-demo",
"description": "Simple PHP Game Demo (using OpenGL/DX/Vulkan over SDL)",
"license": "MIT",
"repositories": [
{"type": "path", "url": "engine"},
{"type": "path", "url": "libs/binaries-downloader"},
{"type": "path", "url": "libs/async"},
{"type": "path", "url": "libs/image-sdl"},
{"type": "path", "url": "libs/math"},
{"type": "path", "url": "libs/renderer"},
{"type": "path", "url": "libs/renderer-sdl"},
{"type": "path", "url": "libs/timer"},
{"type": "path", "url": "libs/ui"},
{"type": "path", "url": "libs/ui-sdl"},
{"type": "path", "url": "libs/var-dumper"}
],
"require": {
"php": "^8.1",
"ext-ffi": "*",
"ext-json": "*",
"local/binaries-downloader": "^1.0",
"bic-engine/async": "^1.0",
"bic-engine/binary": "^1.0",
"bic-engine/image": "^1.0",
"bic-engine/image-ico": "^1.0",
"bic-engine/image-sdl": "^1.0",
"bic-engine/math": "^1.0",
"bic-engine/renderer": "^1.0",
"bic-engine/renderer-sdl": "^1.0",
"bic-engine/timer": "^1.0",
"bic-engine/ui": "^1.0",
"bic-engine/ui-sdl": "^1.0",
"serafim/ffi-ide-helper": "^1.0",
"serafim/bic-engine": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5",
"composer/composer": "^2.0",
"vimeo/psalm": "^4.28",
"bic-engine/var-dumper": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Bic\\Async\\Tests\\": "libs/async/tests",
"Bic\\Image\\Tests\\": "libs/image/tests",
"Bic\\Image\\SDL\\Tests\\": "libs/image-sdl/tests",
"Bic\\Math\\Tests\\": "libs/math/tests",
"Bic\\Renderer\\Tests\\": "libs/renderer/tests",
"Bic\\Renderer\\SDL\\Tests\\": "libs/renderer-sdl/tests",
"Bic\\Timer\\Tests\\": "libs/timer/tests",
"Bic\\UI\\Tests\\": "libs/ui/tests",
"Bic\\UI\\SDL\\Tests\\": "libs/ui-sdl/tests",
"Bic\\VarDumper\\Tests\\": "libs/var-dumper/tests"
}
},
"scripts": {
"bench": [
"phpbench run --report=expression"
]
},
"config": {
"sort-packages": true,
"platform-check": true,
"optimize-autoloader": true,
"allow-plugins": {
"local/binaries-downloader": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}