-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
42 lines (42 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
41
42
{
"name": "aip/aip",
"type": "library",
"description": "Application server in PHP",
"keywords": ["aip", "appserver"],
"homepage": "https://github.com/indeyets/appserver-in-php",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexey Zakhlestin",
"email": "[email protected]",
"homepage": "http://indeyets.ru/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/indeyets/appserver-in-php/issues",
"forum": "https://groups.google.com/forum/?fromgroups#!forum/aip-php-dev",
"wiki": "https://github.com/indeyets/appserver-in-php/wiki",
"source": "https://github.com/indeyets/appserver-in-php"
},
"require": {
"symfony/console": "~2.3",
"symfony/yaml": "~2.3",
"php": ">=5.3.3",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~3.7"
},
"suggest": {
"ext-pcntl": "*",
"ext-posix": "*"
},
"autoload": {
"psr-0": {
"AiP": ""
}
},
"bin": ["bin/aip"]
}