-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.02 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
{
"name": "captainhook/captainhook-phar",
"type": "composer-plugin",
"description": "PHP git hook manager",
"keywords": ["git", "hooks", "pre-commit", "pre-push", "commit-msg", "prepare-commit-msg", "post-merge"],
"homepage": "https://github.com/captainhookphp/captainhook",
"license": "MIT",
"authors": [
{
"name": "Sebastian Feldmann",
"email": "sf@sebastian-feldmann.info"
}
],
"support": {
"issues": "https://github.com/captainhookphp/captainhook/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sebastianfeldmann"
}
],
"autoload": {
"psr-4": {
"CaptainHook\\Composer\\": "src/"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-spl": "*",
"composer-plugin-api": "^1.1||^2.0",
"phar-io/composer-distributor": "^1.0"
},
"require-dev": {
"composer/composer": "^1.1 || ^2.0"
},
"extra": {
"class": "CaptainHook\\Composer\\Plugin"
},
"config": {
"sort-packages": true
}
}