📡 You're offline — showing cached content
New version available!
Quick Access
Tutorials Zend Framework / Laminas Laminas Real Project

Laminas Real Project

4 min read
Real-world Laminas project: multiple modules (Application, Auth, Api, Admin) with own configs.

Real-World Project Structure

myapp/
├── config/
│   ├── application.config.php   # module list
│   └── autoload/
│       ├── global.php
│       └── local.php            # sensitive (not in git)
├── data/cache/
├── module/
│   ├── Application/
│   ├── Auth/
│   ├── Api/
│   └── Admin/
├── public/index.php
└── vendor/