-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
48 lines (48 loc) · 976 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
42
43
44
45
46
47
48
{
"name": "zeeshan/git-profile",
"description": "Change git profile on the go",
"license": "MIT",
"authors": [
{
"name": "Zeeshan Ahmed",
"email": "[email protected]"
}
],
"keywords": [
"git"
],
"require": {
"php": ">=5.5.9",
"symfony/console": "^3.1",
"symfony/process": "^3.1"
},
"require-dev": {
"kherge/box": "~2.5",
"symfony/phpunit-bridge": "^3.2",
"friendsofphp/php-cs-fixer": "~2.0"
},
"autoload": {
"psr-4": {
"Zeeshan\\GitProfile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"bin": [
"bin/git-profile"
],
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"platform": {
"php": "5.5.9"
},
"sort-packages": true
}
}