jasny / mvc
This package is abandoned and no longer maintained.
No replacement package was suggested.
The basics for an MVC application
v2.0.0-beta1
2020-08-26 10:24 UTC
Requires
- php: >=5.6.0
- jasny/controller: ^1.0
- jasny/http-message: ^1.0
- jasny/router: ^1.0
Requires (Dev)
- jasny/php-code-quality: ^2.0
- mikey179/vfsstream: ^1.6
README
Includes a router, a controller base class and a class for loading views.
What is MVC?
The Model View Controller pattern splits the user interface interaction into three distinct roles. Each with it's own responsibility.
View: "Hey, controller, the user just told me he wants item 4 deleted." Controller: "Hmm, having checked his credentials, he is allowed to do that... Hey, model, I want you to get item 4 and do whatever you do to delete it." Model: "Item 4... got it. It's deleted. Back to you, Controller." Controller: "Here, I'll collect the new set of data. Back to you, view." View: "Cool, I'll show the new set to the user now."