Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
804c013
Build WordPress REST API endpoints for AI client
Sep 5, 2025
ff1a009
Fix PromptBuilder API usage and add PHPStan configuration
Sep 5, 2025
2d30e84
Add type validation for prompt parameters and improve PHPStan config
Sep 5, 2025
8dc7e19
Update PHPStan config for CI environment and improve prompt validation
Sep 5, 2025
f398551
Fix phpstan config to use bootstrap instead of missing WordPress stubs
Sep 5, 2025
7e787ab
Fix undefined method calls and clean up PHPStan ignore patterns
Sep 5, 2025
6e1cd8e
Remove unnecessary instanceof check and update PHPStan patterns
Sep 5, 2025
c01a17f
Clean up unused PHPStan ignore patterns
Sep 5, 2025
9e433ab
Remove redundant token usage condition check
Sep 5, 2025
72fbf67
Update PHPStan configuration and memory limit
Sep 5, 2025
9d1752d
Add missing parameter documentation and fix file ending
Sep 5, 2025
244780f
Resolve PHPStan error and implement WordPress controller patterns
Sep 5, 2025
d6bdd32
Fix reserved keyword warnings by renaming namespace parameters
Sep 5, 2025
38f7f71
Remove unused PHPUnit test infrastructure
Sep 5, 2025
5129e3f
Consolidate PHPStan configuration and integrate REST API with plugin
Sep 5, 2025
96a85c0
Remove auto-registration to follow distributed ecosystem requirements
Sep 5, 2025
dd0920f
Simplify REST API to only include generate-*-result endpoints
Sep 10, 2025
365a2c3
Build custom AI capability system for REST API permissions
Sep 10, 2025
1cf0a2a
Build SDK-first REST API with response schemas and simplified permiss…
Sep 11, 2025
fde02cb
Fix inline comment punctuation for code style compliance
Sep 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "~2.1",
"phpstan/phpstan": "^1.10",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
Expand All @@ -58,6 +59,6 @@
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyze --memory-limit=256M"
"phpstan": "phpstan analyze --memory-limit=1024M"
}
}
248 changes: 221 additions & 27 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading