//! PHP-RS - PHP Interpreter in Rust
//!
//! A complete migration of the PHP interpreter from C to Rust
pub use *;
// Re-export commonly used modules for examples
pub use filesystem;
pub use globals;
pub use ini;
pub use output;
pub use runtime;
pub use sapi;
pub use streams;
pub use variables;
pub use alloc;
pub use compile;
pub use errors;
pub use hash;
pub use operators;
pub use string;
pub use vm;