TrueFramework is a small, opinionated PHP framework built around three rules: plain PHP and plain files, one way to do common things, and pluggable where it matters. The v4.1 release focuses on the pieces every real-world app eventually needs — passkey login, expiring tokens, scheduled background work, sane error pages, and a one-class full featured email sender to keep the framework from bloat. Here's what's new. Passkey login with vendored WebAuthn / FIDO2 TrueFramework now ships passkey login support directly in the core package. The widely-used lbuchs/webauthn library is vendored under True\WebAuthn (its original namespace is preserved), so there's no extra Composer dependency to manage and no detached library to keep up to date alongside the framework. The standard registration and assertion flows — challenge issuance, attestation verification, signature validation — are all available out of the box.…