-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (49 loc) · 1.38 KB
/
composer.json
File metadata and controls
56 lines (49 loc) · 1.38 KB
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
51
52
53
54
55
56
{
"name": "phpzone/shell",
"description": "A command/script builder configured by YAML, based on PhpZone",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jakub Zapletal",
"email": "zapletal.jakub@gmail.com"
}
],
"require": {
"php": ">=5.3",
"phpzone/phpzone": "0.2.*@beta",
"symfony/dependency-injection": "~2.3",
"symfony/process": "^2.3.12",
"symfony/options-resolver": "~2.3",
"symfony/config": "~2.3"
},
"require-dev": {
"behat/behat": "~3.0",
"phpspec/phpspec": "~2.2",
"squizlabs/php_codesniffer": "~2.3",
"jakubzapletal/php_codesniffer-rules": "~0.1",
"bossa/phpspec2-expect": "~1.0",
"phpunit/phpunit": "~4.6"
},
"autoload": {
"psr-4": {
"PhpZone\\Shell\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpZone\\Behat\\": "features/bootstrap"
}
},
"config": {
"bin-dir": "bin/"
},
"conflict": {
"phpzone/phpzone": "0.1.*"
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}