forked from captainhookphp/captainhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.19 KB
/
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
49
50
{
"name": "sebastianfeldmann/captainhook",
"description": "PHP git hook manager",
"type": "library",
"keywords": ["git", "hooks", "pre-commit", "pre-push", "commit-msg"],
"homepage": "https://github.com/sebastianfeldmann/captainhook",
"license": "MIT",
"authors": [
{
"name": "Sebastian Feldmann",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sebastianfeldmann/captainhook/issues"
},
"autoload": {
"psr-4": {
"SebastianFeldmann\\CaptainHook\\": "src/"
}
},
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"ext-spl": "*",
"sebastianfeldmann/cli": "^2.1",
"sebastianfeldmann/git": "^1.0.7",
"symfony/console": ">=2.7"
},
"require-dev": {
"composer/composer": "~1"
},
"bin": [
"captainhook"
],
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
},
"scripts": {
"post-install-cmd": [
"\\SebastianFeldmann\\CaptainHook\\Composer\\Cmd::configure",
"\\SebastianFeldmann\\CaptainHook\\Composer\\Cmd::install"
]
},
"suggest": {
"your git hooks": "run 'vendor/bin/captainhook configure' to set up your hook configuration"
}
}