Laminas Interview Prep
5 min read Quiz at the end
Interview topics: ServiceManager, modules, EventManager, ACL, TableGateway, PSR-7/15.
Laminas/Zend Interview Topics
- ServiceManager — IoC container; factories create services on demand
- Module system — self-contained units with own config, routes, views
- EventManager — observer pattern for decoupled communication
- ACL vs RBAC — ACL is resource-based; RBAC is role-based
- TableGateway — data access pattern; wraps a DB table
- PSR-7 — HTTP message interfaces (request/response immutable objects)
- PSR-15 — HTTP server request handlers; Mezzio builds on this
- Laminas vs Zend — Laminas is the open-source continuation of Zend Framework 3
Topic Quiz · 2 questions
Test your understanding before moving on
1. What is PSR-7?
💡 PSR-7 defines standardized immutable HTTP request/response message interfaces.
2. What does PSR-11 define?
💡 PSR-11 defines a common DI container interface.