-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.11 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
{
"name": "lemonphp/phprun",
"type": "library",
"keywords": ["task runner", "task", "runner"],
"description": "A task runner",
"license": "MIT",
"homepage": "https://github.com/lemonphp/phprun",
"support": {
"issues": "https://github.com/lemonphp/phprun/issues",
"source": "https://github.com/lemonphp/phprun"
},
"authors": [
{
"name": "Oanh Nguyen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lemon\\PHPRun\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require": {
"php": ">=5.5.9",
"symfony/yaml": "^3.0",
"symfony/process": "^3.0",
"symfony/console": "^3.0",
"symfony/event-dispatcher": "^3.0",
"symfony/finder": "^3.0",
"deployer/phar-update": "^1.0",
"pimple/pimple": "^3.0",
"phpseclib/phpseclib": "~2.0",
"lemonphp/cli": "^0.2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"config": {
"preferred-install": "dist"
}
}