-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.09 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "open-wp-club/plugin-hub",
"description": "WordPress plugin for managing GitHub-hosted plugins",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Open WP Club",
"homepage": "https://openwpclub.com"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"phpstan/phpstan": "^1.10",
"phpcompatibility/php-compatibility": "^9.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs --standard=WordPress --extensions=php --ignore=*/vendor/*,*/node_modules/* .",
"phpcbf": "phpcbf --standard=WordPress --extensions=php --ignore=*/vendor/*,*/node_modules/* .",
"phpstan": "phpstan analyse includes/ plugin-hub.php",
"lint": [
"@phpcs",
"@phpstan"
],
"fix": "@phpcbf"
},
"support": {
"issues": "https://github.com/Open-WP-Club/plugin-hub/issues",
"source": "https://github.com/Open-WP-Club/plugin-hub"
}
}