phprs 0.1.9

A PHP interpreter with build/package manager written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Facade traits for improved maintainability
//!
//! This module provides trait-based facades that simplify common operations
//! across the engine implementation.

mod factory;
mod parser;
mod stream;

pub use factory::*;
pub use parser::*;
pub use stream::*;