-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 895 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
{
"name": "iamluc/buse",
"description": "Execute git command in several repositories",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Luc Vieillescazes",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"symfony/console": "~2.6",
"symfony/finder": "~2.6",
"symfony/yaml": "~2.6",
"symfony/property-access": "~2.6",
"symfony/process": "~2.6",
"pimple/pimple": "~3.0",
"gitonomy/gitlib": "~0.1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
},
"autoload": {
"psr-4": {
"Buse\\": "src/Buse"
}
},
"autoload-dev": {
"psr-4": {
"Buse\\Tests\\": "tests/Buse/Tests"
}
},
"bin": ["bin/buse"],
"scripts": {
"test": "phpunit"
}
}