jasny / mvc
The basics for an MVC application
Installs: 22 861
Dependents: 0
Suggesters: 1
Security: 0
Stars: 6
Watchers: 4
Forks: 10
Type:metapackage
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."