mago 1.29.0

A comprehensive suite of PHP tooling inspired by Rust’s approach, providing parsing, linting, formatting, and more through a unified CLI and library interface.
1
2
3
4
5
6
7
8
9
10
//! In-process LSP tests. Driven via [`tokio::io::duplex`] paired with
//! [`super::serve`] so each test runs the full backend without the
//! overhead of spawning a child `mago` binary.

mod client;
mod harness;

mod capabilities;
mod initialize;
mod lifecycle;