-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.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
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
{
"type": "composer-plugin",
"name": "sweetchuck/git-hooks",
"description": "Provides a bridge between Git hooks and scripts under VCS.",
"keywords": [
"git-hooks"
],
"authors": [
{
"name": "Andor",
"role": "Maintainer",
"homepage": "https://github.com/Sweetchuck"
}
],
"homepage": "https://github.com/Sweetchuck/git-hooks",
"support": {
"source": "https://github.com/Sweetchuck/git-hooks",
"issues": "https://github.com/Sweetchuck/git-hooks/issues"
},
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"composer-plugin-api": "^2.0",
"symfony/filesystem": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.1",
"composer/composer": "^2.0",
"consolidation/robo": "^3.0",
"nuvoleweb/robo-config": "^2.0",
"squizlabs/php_codesniffer": "^3.5",
"sweetchuck/robo-git": "2.x-dev",
"sweetchuck/robo-phpcs": "2.x-dev"
},
"autoload": {
"psr-4": {
"Sweetchuck\\GitHooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\GitHooks\\Tests\\Acceptance\\": "tests/acceptance/",
"Sweetchuck\\GitHooks\\Tests\\Unit\\": "tests/unit/",
"Sweetchuck\\GitHooks\\Tests\\": "tests/_support/"
}
},
"extra": {
"class": "\\Sweetchuck\\GitHooks\\Composer\\Plugin",
"sweetchuck/git-hooks": {
"symlink": true
}
},
"scripts": {
"post-install-cmd": [
"@git-hooks:deploy"
],
"post-update-cmd": [
"@git-hooks:deploy"
],
"git-hooks:deploy": "git config core.hooksPath \"./git-hooks/$(basename ${SHELL})\""
}
}