forked from mohrwurm/appserver-io-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 980 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "mohrwurm/appserver-io-cli",
"description": "appserver.io command line interface",
"homepage": "https://github.com/mohrwurm/appserver-io-cli",
"keywords": [
"appserver",
"cli",
"php"
],
"license": "OSL-3.0",
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"AppserverIo\\Cli": [
"src/",
"tests/"
]
}
},
"authors": [
{
"name": "Martin Mohr",
"email": "mohrwurm@gmail.com",
"homepage": "http://mohrwurm.de"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/aw3i/build"
}
],
"require": {
"php": ">=5.6.0",
"symfony/console": "~2.5|~3.0",
"symfony/process": "~2.1|~3.0.0",
"appserver-io/properties": "^3.0",
"mikey179/vfsStream": "^1.6"
},
"require-dev": {
"appserver-io/build": "dev-master",
"satooshi/php-coveralls": "^1.0"
},
"bin": [
"bin/appserver",
"bin/appserver.php"
]
}