forked from taskphp/task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 855 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
{
"name": "task/task",
"description": "PHP task runner",
"license": "MIT",
"authors": [
{
"name": "Mike Fisher",
"email": "[email protected]"
},
{
"name": "Aran Wilkinson",
"email": "[email protected]"
}
],
"require": {
"symfony/console": "~2.4",
"pimple/pimple": "~2.0",
"task/console": "~0.3"
},
"require-dev": {
"task/phpspec": "~0.1",
"mikey179/vfsStream": "~1.2",
"henrikbjorn/phpspec-code-coverage" : "dev-feature/multiple-reports@dev",
"bossa/phpspec2-expect": "~1.0"
},
"autoload": {
"psr-4": {
"Task\\": "src/"
}
},
"repositories": [
{"type": "vcs", "url": "https://github.com/mbfisher/PhpSpecCodeCoverageExtension"}
]
}