-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.56 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
{
"name": "ffi-headers/opengl-headers",
"type": "library",
"description": "PHP FFI OpenGL Headers",
"license": "MIT",
"keywords": ["ffi", "headers", "c", "windows", "macos", "linux", "unix", "opengl", "opengl-es", "wgl", "glx"],
"support": {
"source": "https://github.com/php-ffi-headers/opengl-headers",
"issues": "https://github.com/php-ffi-headers/opengl-headers/issues",
"docs": "https://github.com/php-ffi-headers/opengl-headers/blob/master/README.md"
},
"authors": [
{
"name": "Nesmeyanov Kirill",
"email": "[email protected]",
"homepage": "https://serafimarts.ru",
"role": "maintainer"
}
],
"require": {
"php": "^8.1",
"ext-phar": "*",
"ffi-headers/contracts": "^1.0",
"ffi/preprocessor": "^0.2.1|^1.0"
},
"autoload": {
"psr-4": {
"FFI\\Headers\\": "src"
}
},
"require-dev": {
"ffi-headers/testing": "^1.0",
"symfony/var-dumper": "^5.4|^6.0",
"vimeo/psalm": "^4.22"
},
"autoload-dev": {
"psr-4": {
"FFI\\Headers\\OpenGL\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"provide": {
"ffi-headers/contracts-implementation": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}