-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 922 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
39
40
41
{
"name": "chh/bob",
"description": "A tiny and messy build automation tool for PHP projects.",
"keywords": [
"build"
],
"license": "MIT",
"homepage": "https://github.com/CHH/Bob",
"authors": [
{
"name": "Christoph Hochstrasser",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/finder": "~2.0",
"symfony/process": "~2.0",
"chh/optparse": "~0.1",
"chh/fileutils": "~1.0",
"monolog/monolog": "~1.0",
"pimple/pimple": "~1.0",
"chh/itertools": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-0": {
"Bob\\": "lib/"
}
},
"bin": [
"bin/bob"
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}