-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 618 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 618 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
{
"name": "mario-deluna/php-glfw",
"type": "php-ext",
"license": "MIT",
"description": "A fully-featured OpenGL and GLFW extension for PHP. ",
"require": {
"php": ">= 8.0.0"
},
"php-ext": {
"extension-name": "glfw",
"configure-options": [
{
"name": "enable-glfw",
"description": "Enable PHP-GLFW support"
}
]
},
"require-dev": {
"phpunit/phpunit": "9.6.34 || ^10.0 || ^11.0 || ^12.0"
},
"autoload-dev": {
"psr-4": {
"GL\\Tests\\": "tests/"
}
}
}