-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
61 lines (61 loc) · 1.3 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
{
"name": "bueltge/wordpress-multisite-enhancements",
"description": "Enhance Multisite for Network Admins with different topics",
"keywords": [
"wordpress",
"multisite",
"plugin"
],
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"homepage": "https://github.com/bueltge/wordpress-multisite-enhancements/",
"authors": [
{
"name": "Frank Bültge",
"homepage": "https://bueltge.de",
"email": "frank@bueltge.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/bueltge/wordpress-multisite-enhancements/issues"
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3",
"wp-coding-standards/wpcs": "*",
"phpunit/phpunit": "^8",
"brain/monkey": "^2.6"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"Multisite_Enhancements\\Tests\\": "tests/phpunit/"
}
},
"autoload": {
"classmap": [
"src/",
"multisite-enhancements.php"
]
},
"scripts": {
"cs": "@php ./vendor/bin/phpcs",
"cbf": "@php ./vendor/bin/phpcbf",
"pu": "@php ./vendor/bin/phpunit",
"qa": [
"@cs",
"@pu"
]
}
}