From 764ef947a0d1d2a9026c3e1a3a06099a3de8bcc2 Mon Sep 17 00:00:00 2001 From: "@micahstubbs" Date: Tue, 23 Dec 2025 09:22:15 -0800 Subject: [PATCH] Add lspServers config to phpactor plugin Fixes #15 Claude Code reads LSP configuration from the lspServers field in marketplace.json, not from .lsp.json files in plugin directories. --- .claude-plugin/marketplace.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 1d412a0..7d983b6 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -157,6 +157,20 @@ "author": { "name": "Piebald LLC", "email": "support@piebald.ai" + }, + "lspServers": { + "phpactor": { + "command": "phpactor", + "args": ["language-server"], + "extensionToLanguage": { + ".php": "php", + ".phtml": "php", + ".php3": "php", + ".php4": "php", + ".php5": "php", + ".phps": "php" + } + } } }, {