-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 2 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
{
"name": "wecodemore/wordpress-early-hook",
"description": "Small library to safely add WordPress hooks before WordPress is loaded.",
"type": "library",
"keywords": [
"wordpress",
"wp",
"wp hooks",
"wp actions",
"wp filters",
"wordpress hooks",
"wordpress actions",
"wordpress filters",
"hooks",
"actions",
"filters"
],
"prefer-stable": true,
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]",
"homepage": "https://gmazzap.me",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/wecodemore/wordpress-early-hook/issues",
"source": "https://github.com/wecodemore/wordpress-early-hook"
},
"require": {
"php": ">=7.1 < 8.4"
},
"require-dev": {
"roots/wordpress-no-content": ">=6.1.1",
"roave/security-advisories": "dev-latest",
"inpsyde/php-coding-standards": "^1.0.0",
"vimeo/psalm": "^4.30.0",
"phpunit/phpunit": "^7.5.20 || ^9.6.4"
},
"autoload": {
"files": [
"wordpress-early-hook.php"
]
},
"autoload-dev": {
"psr-4": {
"WeCodeMore\\Tests\\": [
"tests/src",
"tests/integration"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": false
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-suggestions --find-unused-psalm-suppress --no-diff --no-cache --no-file-cache",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests"
]
}
}