-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.56 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
{
"name": "augustash/captain-hookie",
"description": "CaptainHook-based PHP Git hooks",
"license": [
"MIT"
],
"type": "library",
"homepage": "https://github.com/augustash/captain-hookie",
"require": {
"php": ">=8.0",
"captainhook/captainhook": "^5.24",
"captainhook/hook-installer": "^1.0",
"sebastianfeldmann/git": "^3.11"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "*",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Augustash\\CaptainHookie\\": "src/"
}
},
"config": {
"allow-plugins": {
"captainhook/hook-installer": true
},
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"file-mapping": {
"[project-root]/captainhook.json": {
"mode": "replace",
"overwrite": false,
"path": "src/.captainhook.json"
}
}
}
},
"scripts": {
"test:all": [
"@test:lint",
"@test:stan",
"@test:style"
],
"test:lint": "vendor/bin/parallel-lint --exclude vendor src/",
"test:stan": "vendor/bin/phpstan analyze --no-interaction --no-progress",
"test:static-analysis": [
"@test:lint",
"@test:stan"
],
"test:style": "vendor/bin/phpcs --standard=phpcs.xml.dist src/"
}
}