-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 941 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
{
"name": "peridot-php/peridot-cli",
"description": "The Peridot command line interface",
"license": "MIT",
"authors": [
{
"name": "Brian Scaturro",
"email": "[email protected]"
},
{
"name": "Austin Morris",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Peridot\\Cli\\": "src/"
}
},
"require": {
"peridot-php/peridot-core": "2.0.*@dev",
"peridot-php/peridot-dsls": "2.0.*@dev",
"peridot-php/peridot-reporters": "2.0.*@dev",
"symfony/console": "~2.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"require-dev": {
"peridot-php/peridot": "2.0.*@dev",
"symfony/process": "~2.6",
"phpspec/prophecy": "~1.4"
},
"minimum-stability":"dev",
"prefer-stable": true
}