16 lines
539 B
Lua
16 lines
539 B
Lua
---@type ToolchainRequirements
|
|
return {
|
|
plugins = {
|
|
table.unpack(require('toolchain.php.formatter').plugins),
|
|
table.unpack(require('toolchain.php.actions').plugins),
|
|
table.unpack(require('toolchain.php.diagnostics').plugins),
|
|
table.unpack(require('toolchain.php.debugger').plugins),
|
|
table.unpack(require('toolchain.php.plugins')),
|
|
},
|
|
highlighters = {
|
|
'php',
|
|
'phpdoc',
|
|
'twig',
|
|
},
|
|
language_servers = require('toolchain.php.language_server').requirements,
|
|
}
|