forked from clue/reactphp-zenity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 892 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 892 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
{
"name": "clue/zenity-react",
"description": "Zenity allows you to build graphical desktop (GUI) applications in PHP, built on top of ReactPHP.",
"keywords": ["GUI", "desktop", "dialog", "zenity", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-zenity",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@clue.engineering"
}
],
"require": {
"php": ">=5.3",
"react/child-process": "^0.6.3",
"react/event-loop": "^1.2",
"react/promise": "~2.0|~1.0"
},
"require-dev": {
"clue/block-react": "^1.1",
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8"
},
"autoload": {
"psr-4": { "Clue\\React\\Zenity\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Zenity\\": "tests/" }
}
}