blob: 11b00e3ffb5aea217781aafffa385d949b963b58 (
plain)
1
2
3
4
5
6
7
8
9
|
//! `Composer\Platform\Runtime` has no Rust counterpart. Its work belongs to the running PHP
//! interpreter, so it is ported as PHP into the RPC worker (`ShirabePlatformRuntime` in
//! `shirabe-php-rpc`), and its callers read the answers off `shirabe_php_rpc::PlatformInfo`.
pub mod hhvm_detector;
pub mod version;
pub use hhvm_detector::*;
pub use version::*;
|