forked from iodigital-com/composer-git-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.25 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
{
"name": "iodigital-com/composer-git-hooks",
"replace": {
"isaac/composer-git-hooks": "*"
},
"type": "composer-plugin",
"license": "MIT",
"description": "iO Composer Git Hooks",
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"iodigital-com/php-code-sniffer-standard": "^29.0",
"slevomat/coding-standard": "^7.1.0 || ^8.0",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.10.1",
"phpstan/phpstan-strict-rules": "^1.5.0"
},
"scripts": {
"post-install-cmd": "IODigital\\ComposerGitHooks\\ComposerPlugin::process",
"post-update-cmd": "IODigital\\ComposerGitHooks\\ComposerPlugin::process"
},
"autoload": {
"psr-4": {
"IODigital\\ComposerGitHooks\\": "src/"
}
},
"extra": {
"class": "IODigital\\ComposerGitHooks\\ComposerPlugin"
}
}