-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.14 KB
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "danknauss/maestro",
"description": "In-place editing of the WordPress admin menu \u2014 rename, reorder, icons, per-role visibility.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^4.0",
"wp-phpunit/wp-phpunit": "^7.0",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "^1.12",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"autoload-dev": {
"psr-4": {
"Maestro\\Tests\\Unit\\": "tests/unit/",
"Maestro\\Tests\\Integration\\": "tests/integration/"
}
},
"scripts": {
"test:unit": "phpunit -c phpunit-unit.xml.dist",
"test:integration": "phpunit -c phpunit-integration.xml.dist",
"lint": "phpcs --standard=phpcs.xml.dist maestro-menu-editor.php uninstall.php includes/",
"analyse:phpstan": "phpstan analyse --configuration=phpstan.neon.dist --memory-limit=512M --no-progress"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}