composer_lsp

The composer language server provides various features for composer to make development easier and faster.

2022-11-10_17-28

Debugging

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.

Features

Install

Using cargo

cargo install composer_lsp

Editor Setup

Neovim

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{} ```

VS Code

TODO - Still need to build an extension for it.