Are you tired of bloated frameworks for small projects? Do you just want to build something fast, clean, and flexible without sacrificing structure? Then it’s time to try VeltoPHP — a lightweight and simple PHP framework based on the RVC (Route-View-Controller) pattern.
What is VeltoPHP?
VeltoPHP is a minimalist PHP framework built for developers who want more control and less complexity. It’s perfect for:
- Developers who love simplicity.
- Building small to medium-sized web projects.
- Rapid prototyping or lightweight MVPs.
- Learning core PHP with modern structure.
Instead of MVC (Model-View-Controller), VeltoPHP adopts RVC (Route-View-Controller) — a simplified and intuitive structure that skips over-engineered architecture while keeping your code organized and scalable.
Why RVC Instead of MVC?
The RVC approach prioritizes routes and views while allowing you to structure your controllers as needed. In most small to mid-sized apps, the “model” layer can be handled directly through custom classes, raw SQL, or a lightweight ORM of your choice.
Getting Started
You can start a new VeltoPHP project in seconds:
composer create-project veltophp/velto my-project
cd my-project
php velto start
Visit :
Website: https://veltophp.com
GitHub: https://github.com/veltophp