-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.52 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.52 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
{
"name": "stuttter/wp-multi-network",
"description": "Provides a Network Management Interface for global administrators in WordPress Multisite installations.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "John James Jacoby",
"email": "[email protected]"
}
],
"homepage": "https://wordpress.org/plugins/wp-multi-network/",
"support": {
"issues": "https://github.com/stuttter/wp-multi-network/issues",
"forum": "https://github.com/stuttter/wp-multi-network/discussions",
"source": "https://github.com/stuttter/wp-multi-network"
},
"require": {
"php": ">=7.2",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"php-stubs/wp-cli-stubs": "^2.12.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.8",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.33",
"staabm/annotate-pull-request-from-checkstyle": "^1.8.6",
"szepeviktor/phpstan-wordpress": "^2.0.3",
"wp-coding-standards/wpcs": "^3.3.0",
"yoast/wp-test-utils": "^1.2.0"
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G",
"phpcs": "vendor/bin/phpcs -q --report=checkstyle --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 | vendor/bin/cs2pr --graceful-warnings"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}