-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
composer.json
77 lines (77 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "captainhook/captainhook",
"type": "library",
"description": "PHP git hook manager",
"keywords": ["git", "hooks", "pre-commit", "pre-push", "commit-msg", "prepare-commit-msg", "post-merge"],
"homepage": "http://php.captainhook.info/",
"license": "MIT",
"authors": [
{
"name": "Sebastian Feldmann",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/captainhookphp/captainhook/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sebastianfeldmann"
}
],
"autoload": {
"psr-4": {
"CaptainHook\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CaptainHook\\App\\": "tests/unit/",
"CaptainHook\\App\\Integration\\": "tests/integration/"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-spl": "*",
"ext-xml": "*",
"captainhook/secrets": "^0.9.4",
"sebastianfeldmann/camino": "^0.9.2",
"sebastianfeldmann/cli": "^3.3",
"sebastianfeldmann/git": "^3.10",
"symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"composer/composer": "~1 || ^2.0",
"mikey179/vfsstream": "~1"
},
"bin": [
"bin/captainhook"
],
"extra": {
"branch-alias": {
"dev-main": "6.0.x-dev"
},
"captainhook": {
"config": "captainhook.json"
}
},
"replace" : {
"sebastianfeldmann/captainhook": "*"
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": "tools/phive install --force-accept-unsigned",
"tools": "tools/phive install --force-accept-unsigned",
"compile": "tools/box compile",
"test": "tools/phpunit --testsuite UnitTests",
"test:integration": "tools/phpunit --testsuite IntegrationTests --no-coverage",
"analyse": "tools/phpstan analyse",
"style": "tools/phpcs --standard=psr12 src tests"
}
}