forked from spryker/git-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.38 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
{
"name": "spryker/git-hook",
"description": "Spryker Git hooks",
"type": "library",
"license": "MIT",
"keywords": [
"framework",
"sniffer",
"architecture",
"standards"
],
"homepage": "https://spryker.com",
"authors": [
{
"name": "Spryker",
"homepage": "https://spryker.com"
}
],
"support": {
"source": "https://github.com/spryker/git-hook"
},
"require": {
"php": ">=7.4",
"spryker/laminas": "^1.0.0",
"symfony/process": "^4.0.0 || ^5.0.0 || ^6.0.0",
"symfony/yaml": "^4.0.0 || ^5.0.0 || ^6.0.0",
"symfony/console": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"require-dev": {
"phpstan/phpstan": "^1.2.0",
"spryker/code-sniffer": "*",
"sllh/composer-versions-check": "*"
},
"autoload": {
"psr-4": {
"GitHook\\": "src/GitHook/"
}
},
"scripts": {
"cs-check": "phpcs --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml -p -s src/",
"cs-fix": "phpcbf --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml -p src/",
"stan": "vendor/bin/phpstan analyse"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"sllh/composer-versions-check": true
}
}
}