-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.08 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
{
"name": "andkirby/commithook",
"description": "PHP Commit Hooks",
"minimum-stability": "stable",
"prefer-stable": true,
"license": "GPL-3.0",
"require": {
"php": ">=5.5",
"rikby/console-helper": "^0.11",
"rikby/crypter": "~1.0@stable",
"symfony/console": "~3.0@stable",
"symfony/filesystem": "~2.5@stable",
"symfony/finder": "~2.5@stable",
"chobie/jira-api-restclient": "^2.0@dev",
"zendframework/zend-cache": "~2.5@stable",
"knplabs/github-api": "~1.4@stable"
},
"require-dev": {
"phpunit/phpunit": "~4.0@stable",
"squizlabs/php_codesniffer": "2.*@stable",
"escapestudios/symfony2-coding-standard": "~2.0@stable",
"symfony/process": "^3.1@stable"
},
"bin": [
"bin/commithook",
"bin/commithook.php"
],
"suggest": {
"squizlabs/php_codesniffer": "Suggested v2.* for using code sniffer"
},
"autoload": {
"psr-4": {
"PreCommit\\": "src/lib/PreCommit",
"PreCommit\\Test\\": "src/tests/testsuite/PreCommit/Test"
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.x-dev"
}
}
}