-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.11 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": "netgen/git-hooks",
"description": "Various git hooks used by Netgen websites",
"type": "composer-plugin",
"license": "MIT",
"keywords": [
"git",
"captainhook",
"netgen"
],
"homepage": "https://github.com/netgen/git-hooks",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.2",
"captainhook/captainhook": "^5.15",
"symfony/process": "^5.4 || ^6.3 || ^7.0"
},
"require-dev": {
"composer/composer": "^2.5",
"php-cs-fixer/shim": "^3.15",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4"
},
"autoload": {
"psr-4": {
"Netgen\\GitHooks\\": "src/"
}
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi src"
},
"extra": {
"class": "Netgen\\GitHooks\\Composer\\InstallHooksPlugin",
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}