-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.23 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
{
"name": "rugaard/git-hooks-php",
"type": "git-hook",
"description": "PHP related Git hooks.",
"keywords": [
"morten",
"rugaard",
"morten rugaard",
"composer",
"plugin",
"composer plugin",
"git",
"hooks",
"git hooks",
"php",
"php git hooks"
],
"authors": [
{
"name": "Morten Rugaard",
"email": "[email protected]",
"homepage": "https://github.com/rugaard",
"role": "Developer"
}
],
"license": "MIT",
"homepage": "https://github.com/rugaard",
"support": {
"issues": "https://github.com/rugaard/git-hooks-php/issues",
"source": "https://github.com/rugaard/git-hooks-php"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"rugaard/git-hooks": "^1.0",
"squizlabs/php_codesniffer": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Rugaard\\GitHooks\\PHP\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"rugaard/git-hooks": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}