-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
50 lines (50 loc) · 1.44 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
43
44
45
46
47
48
49
50
{
"name": "indeyets/pake",
"description": "PHP automation tool inspired by Rake",
"keywords": ["automation", "build", "task"],
"authors": [
{
"name": "Alexey Zakhlestin",
"email": "[email protected]",
"homepage": "https://indeyets.ru/",
"role": "Developer"
},
{
"name": "Fabien Potencier",
"email": "[email protected]",
"homepage": "http://fabien.potencier.org/",
"role": "Developer"
}
],
"homepage": "https://github.com/indeyets/pake/wiki",
"license": "MIT",
"support": {
"email": "[email protected]",
"issues": "https://github.com/indeyets/pake/issues",
"forum": "https://groups.google.com/forum/?fromgroups#!forum/pake",
"wiki": "https://github.com/indeyets/pake/wiki",
"source": "https://github.com/indeyets/pake"
},
"require": {
"php": ">=5.2.1",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"simpletest/simpletest": "1.1.*"
},
"suggest": {
"ext-bz2": "*",
"ext-pcntl": "*",
"ext-phar": "*",
"ext-posix": "*",
"ext-zlib": "*",
"phing/phing": "2.4.*",
"simpletest/simpletest": "1.1.*"
},
"autoload": {
"files": ["lib/pake/autoload.php"]
},
"bin": ["bin/pake"]
}