EN | ES

About Wordless

Wordless is a minimal, dependency-free flat-file CMS built with modern PHP.

Philosophy

  • No database — content lives in PHP files
  • No Composer — zero third-party dependencies
  • No magic — clean, readable, testable code

Architecture

Strict separation of concerns across focused modules:

  • app/Core — Container and Application kernel
  • app/Content — Repository and PHP file loader
  • app/Routing — File-based URL resolution
  • app/Http — Request, Response, Controllers, Middleware
  • app/Templating — Native PHP renderer with layouts
  • app/Cache — Flat-file cache with TTL
  • app/Events — Lightweight event dispatcher
  • app/Plugins — Plugin registration system

← Back home