php-lsp 0.11.0

A PHP Language Server Protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! PHP-language model: configuration, autoload/PSR-4 resolution, PhpStorm
//! metadata, docblock parsing, and built-in name knowledge. Everything here is
//! about the PHP language and project conventions, as opposed to the generic
//! text mechanics in [`crate::text`].

pub mod config;
pub mod docblock;
pub mod php_names;

pub(crate) mod autoload;
pub(crate) mod phpstorm_meta;