-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.35 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
{
"name": "dimitri/wp-module-hook",
"description": "Easily manage hooks in WordPress.",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Dimitri BOUTEILLE",
"email": "bonjour@dimitri-bouteille.fr",
"homepage": "https://github.com/dimitriBouteille",
"role": "Developer"
}
],
"keywords": ["wordpress", "wp", "wordpress-starter", "hook", "filter", "wordpress-development"],
"homepage": "https://github.com/dimitriBouteille/wp-module-hook",
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/dimitriBouteille/wp-module-hook/issues",
"source": "https://github.com/dimitriBouteille/wp-module-hook"
},
"autoload": {
"psr-4": {
"Dimitri\\WpHook\\": "src/"
}
},
"require": {
"php": ">=8.2",
"psr/cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"rector/rector": "^2.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65"
},
"scripts": {
"rector": "vendor/bin/rector process src --dry-run",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"csFixer:check": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"csFixer": "vendor/bin/php-cs-fixer fix"
}
}