-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 881 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 881 Bytes
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
{
"name": "task/task",
"description": "PHP task runner",
"license": "MIT",
"authors": [
{
"name": "Mike Fisher",
"email": "mike@mbfisher.com"
},
{
"name": "Aran Wilkinson",
"email": "aran3001@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"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"}
]
}