-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.98 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.98 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "lwplugins/lw-site-manager",
"description": "WordPress Site Manager using Abilities API - Full site maintenance via AI/REST",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "LW Plugins",
"homepage": "https://lwplugins.com"
}
],
"homepage": "https://github.com/lwplugins/lw-site-manager",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"php-stubs/woocommerce-stubs": "^10.9",
"php-stubs/wp-cli-stubs": "^2.12",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.13",
"szepeviktor/phpstan-wordpress": "^2.0",
"wordpress/mcp-adapter": "^0.5",
"wp-coding-standards/wpcs": "^3.3",
"yoast/phpunit-polyfills": "^4.0"
},
"suggest": {
"wordpress/mcp-adapter": "^0.5 — powers the built-in MCP server (LW Plugins → AI / MCP). Not needed for the REST / Abilities API. Bundled in the wordpress.org ZIP. Composer installs that want the MCP server add it themselves — but note that on a WooCommerce store WooCommerce bundles its own older copy and loads it first, so the version you install may not be the one that runs; the plugin shows an admin notice when that happens."
},
"autoload": {
"psr-4": {
"LightweightPlugins\\SiteManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LightweightPlugins\\SiteManager\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyse --memory-limit=2G",
"analyse": "phpstan analyse --memory-limit=2G",
"test": "phpunit",
"test:unit": "phpunit",
"test:integration": "phpunit -c phpunit-integration.xml.dist",
"install-wp-tests": "bash tests/bin/install-wp-tests.sh"
}
}