litephp / app
A starter application built on LitePHP
v1.0.0
2026-06-06 05:23 UTC
Requires
- litephp/core: ^1.0.0
README
A starter application built on LitePHP.
Structure
litephp-app/
├── app/
│ ├── Controllers/
│ ├── Middleware/
│ ├── Models/
│ ├── Routes/
│ ├── Services/
│ └── views/
├── Bootstrap/ ← app bootstrap (references framework)
├── config/ ← app configuration
├── database/ ← migrations
├── public/ ← web root (point your web server here)
├── storage/ ← cache, logs, sessions
├── autoload.php ← registers App\ + loads framework Core\
├── index.php ← entry point
└── .env ← environment config (copy from .env.example)
Requirements
- PHP 8.1+
Getting Started
- Copy
.env.exampleto.envand fill in your values