The composer language server provides various features for composer to make development easier and faster.
For better debugging, you can use additional file logging with log4rs crate. A enviroment variable COMPOSER_LSP_LOG
needs to be set, which points to the log4rs yaml config file. For more information check the log4rs documentation.
Using cargo
cargo install composer_lsp
Plugins required: - lspconfig (https://github.com/neovim/nvim-lspconfig)
After installing the package, add this to your lua config
```lua local configs = require 'lspconfig.configs' local lspconfig = require 'lspconfig' if not configs.composerlsp then configs.composerlsp = { defaultconfig = { cmd = {'composerlsp'}, filetypes = {'json'}, rootdir = function(pattern) local cwd = vim.loop.cwd() local root = lspconfig.util.rootpattern('composer.json', '.git')(pattern)
-- prefer cwd if root is a descendant
return lspconfig.util.path.is_descendant(cwd, root) and cwd or root
end,
settings = {},
}, } end lspconfig.composer_lsp.setup{} ```
TODO - Still need to build an extension for it.