-
Notifications
You must be signed in to change notification settings - Fork 175
/
composer.json
33 lines (33 loc) · 866 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": "gabrielrcouto/php-gui",
"description": "Extensionless PHP Graphic User Interface library",
"keywords": ["php","gui","graphic","interface"],
"homepage": "http://github.com/gabrielrcouto/php-gui",
"license": "MIT",
"authors": [
{
"name": "Gabriel Rodrigues Couto",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"react/child-process": "^0.4.0"
},
"require-dev" : {
"phing/phing": "2.*",
"phpunit/phpunit": "^4.8.35",
"squizlabs/php_codesniffer": "2.0.*@dev",
"evert/phpdoc-md" : "~0.2.0",
"phpdocumentor/phpdocumentor": "^2.8"
},
"config" : {
"bin-dir" : "bin/"
},
"autoload": {
"psr-4": {
"Gui\\": "src/",
"Test\\": "test/"
}
}
}