|
| 1 | +<!-- SPDX-License-Identifier: PMPL-1.0-or-later --> |
| 2 | +<!-- TOPOLOGY.md — Project architecture map and completion dashboard --> |
| 3 | +<!-- Last updated: 2026-02-19 --> |
| 4 | + |
| 5 | +# Sanctify-PHP — Project Topology |
| 6 | + |
| 7 | +## System Architecture |
| 8 | + |
| 9 | +``` |
| 10 | + ┌─────────────────────────────────────────┐ |
| 11 | + │ PHP DEVELOPER │ |
| 12 | + │ (CLI, LSP, WordPress Plugin) │ |
| 13 | + └───────────────────┬─────────────────────┘ |
| 14 | + │ PHP Source |
| 15 | + ▼ |
| 16 | + ┌─────────────────────────────────────────┐ |
| 17 | + │ SANCTIFY-PHP CORE (HASKELL) │ |
| 18 | + │ │ |
| 19 | + │ ┌───────────┐ ┌───────────────────┐ │ |
| 20 | + │ │ Parser │──► AST Analysis │ │ |
| 21 | + │ │ (Megapars)│ │ (Types/Taint) │ │ |
| 22 | + │ └─────┬─────┘ └────────┬──────────┘ │ |
| 23 | + │ │ │ │ |
| 24 | + │ ┌─────▼─────┐ ┌────────▼──────────┐ │ |
| 25 | + │ │ Transform │ │ Emit / Report │ │ |
| 26 | + │ │ Passes │ │ (SARIF/HTML/PHP) │ │ |
| 27 | + │ └─────┬─────┘ └────────┬──────────┘ │ |
| 28 | + └────────│─────────────────│──────────────┘ |
| 29 | + │ │ |
| 30 | + ▼ ▼ |
| 31 | + ┌─────────────────────────────────────────┐ |
| 32 | + │ OUTPUT ARTIFACTS │ |
| 33 | + │ ┌───────────┐ ┌───────────┐ ┌───────┐│ |
| 34 | + │ │ Hardened │ │ Security │ │ Infra ││ |
| 35 | + │ │ PHP Code │ │ Reports │ │ Config││ |
| 36 | + │ └───────────┘ └───────────┘ └───────┘│ |
| 37 | + └───────────────────┬─────────────────────┘ |
| 38 | + │ |
| 39 | + ▼ |
| 40 | + ┌─────────────────────────────────────────┐ |
| 41 | + │ TARGET ENVIRONMENT │ |
| 42 | + │ (WordPress, Nginx, Guix/Aegis) │ |
| 43 | + └─────────────────────────────────────────┘ |
| 44 | +
|
| 45 | + ┌─────────────────────────────────────────┐ |
| 46 | + │ REPO INFRASTRUCTURE │ |
| 47 | + │ Justfile Automation .machine_readable/ │ |
| 48 | + │ Cabal / Nix / Guix 0-AI-MANIFEST.a2ml │ |
| 49 | + └─────────────────────────────────────────┘ |
| 50 | +``` |
| 51 | + |
| 52 | +## Completion Dashboard |
| 53 | + |
| 54 | +``` |
| 55 | +COMPONENT STATUS NOTES |
| 56 | +───────────────────────────────── ────────────────── ───────────────────────────────── |
| 57 | +CORE PIPELINE (HASKELL) |
| 58 | + PHP Parser (Megaparsec) ██████████ 100% Full grammar coverage stable |
| 59 | + AST & Taint Analysis ████████░░ 80% Data flow paths refining |
| 60 | + Transformation Passes ██████████ 100% strict_types/ABSPATH verified |
| 61 | + PHP Code Emission ██████████ 100% Lossless generation verified |
| 62 | +
|
| 63 | +INTEGRATIONS |
| 64 | + LSP / IDE Integration ██████░░░░ 60% In-editor highlighting active |
| 65 | + WordPress Plugin ████████░░ 80% Scan & Audit hooks stable |
| 66 | + Infrastructure Export ██████████ 100% Nginx/php.ini templates active |
| 67 | +
|
| 68 | +REPO INFRASTRUCTURE |
| 69 | + Justfile Automation ██████████ 100% Standard build/test tasks |
| 70 | + .machine_readable/ ██████████ 100% STATE tracking active |
| 71 | + Guix / Nix Build ██████████ 100% Reproducible build env stable |
| 72 | +
|
| 73 | +───────────────────────────────────────────────────────────────────────────── |
| 74 | +OVERALL: █████████░ ~90% Stable security toolkit |
| 75 | +``` |
| 76 | + |
| 77 | +## Key Dependencies |
| 78 | + |
| 79 | +``` |
| 80 | +PHP Source ──────► Haskell Parser ────► AST Analysis ──────► Transform |
| 81 | + │ │ │ │ |
| 82 | + ▼ ▼ ▼ ▼ |
| 83 | +Target Env ◄────── Emit Code ◄─────── Infrastructure ◄───── Report |
| 84 | +``` |
| 85 | + |
| 86 | +## Update Protocol |
| 87 | + |
| 88 | +This file is maintained by both humans and AI agents. When updating: |
| 89 | + |
| 90 | +1. **After completing a component**: Change its bar and percentage |
| 91 | +2. **After adding a component**: Add a new row in the appropriate section |
| 92 | +3. **After architectural changes**: Update the ASCII diagram |
| 93 | +4. **Date**: Update the `Last updated` comment at the top of this file |
| 94 | + |
| 95 | +Progress bars use: `█` (filled) and `░` (empty), 10 characters wide. |
| 96 | +Percentages: 0%, 10%, 20%, ... 100% (in 10% increments). |
0 commit comments