-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 813 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 813 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
33
34
35
36
{
"name": "toknot/gtk",
"description": "PHP bindings to the GTK+3.",
"keywords": [
"ui",
"php",
"ffi",
"gtk",
"gtk3"
],
"homepage": "http://toknot.com",
"license": "BSD-3-Clause",
"version": "0.1.2",
"authors": [
{
"name": "Szopen Xiao",
"email": "xiao@toknot.com",
"homepage": "http://toknot.com",
"role": "Founder"
}
],
"support": {
"issues": "https://github.com/chopins/php-gtk/issues?state=open",
"source": "https://github.com/chopins/php-gtk"
},
"require": {
"php": ">=7.4.0",
"ext-ffi": "*",
"toknot/ffi-extend" : ">=v0.1.4"
},
"autoload": {
"psr-4": {
"Gtk\\": "src/"
}
}
}