sebaks/controller

There is no license information available for the latest version (0.1.2) of this package.

0.1.2 2016-04-18 11:41 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:31:24 UTC


README

Build Status codecov.io

#MVC controller implementation

This is an implementation of MVC controller which is suitable for most tasks. It is next level of sebaks/crud.

Installation

Installation of sebaks/controller uses composer.

php composer.phar require sebaks/controller

or add to your composer.json

"require": {
  "sebaks/controller": "^0.0.1"
}

Quick start

Almost all controllers have similar workflow:

  • Validate request
  • Validate data
  • Run Domain service
  • Build response

That solution provide this

Go to sebaks/zend-mvc-controller to see controller implementation for Zend MVC.