-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 825 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 825 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
27
28
29
30
31
32
{
"name": "toknot/php-libui",
"description": "PHP bindings to the libui C library.",
"keywords": ["ui", "php","ffi","libui"],
"homepage": "http://toknot.com",
"license": "BSD-3-Clause",
"version" : "0.2.4",
"authors": [
{
"name": "Szopen Xiao",
"email": "xiao@toknot.com",
"homepage": "http://toknot.com",
"role": "Founder"
}
],
"support": {
"issues": "https://github.com/chopins/php-libui/issues?state=open",
"source": "https://github.com/chopins/php-libui"
},
"require": {
"php": ">=8.1.0",
"ext-ffi" : "*"
},
"suggest" : {
"ext-imagick" : "For get font real height and width"
},
"autoload" : {
"psr-4": {
"UI\\": "src/"
}
}
}