-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
33 lines (33 loc) · 935 Bytes
/
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
{
"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": "[email protected]"
}
],
"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.6 || ^5.7 || ^4.8.36"
},
"autoload": {
"psr-4": {
"Clue\\React\\Zenity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Zenity\\": "tests/"
}
}
}