phprs 0.1.12

A PHP interpreter with build/package manager written in Rust
Documentation
# Drupal-style example (phprs)

Minimal Drupal bootstrap that runs on the phprs engine.

## Run

From the **project root**:

```bash
cargo run -p phprs-cli -- run examples/drupal/index.php
```

## CI

Covered by `example_drupal_index_runs` in `tests/examples_runtime.rs`.

## Layout

- `index.php` — entry point; requires bootstrap.inc and Drupal.php
- `core/includes/bootstrap.inc.php` — defines DRUPAL_ROOT, DRUPAL_BOOTSTRAP_CONFIGURATION
- `core/lib/Drupal.php` — kernel stub; echoes load status
- `core/lib/DrupalKernel.php` — minimal kernel class for the demo

This is a **demo**, not full Drupal parity.