PHPackages                             jamm/mvc - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. jamm/mvc

ActiveLibrary[Framework](/categories/framework)

jamm/mvc
========

Tiny base frame for MVC-designed projects

11102PHP

Since Aug 18Pushed 10y ago2 watchersCompare

[ Source](https://github.com/jamm/MVC)[ Packagist](https://packagist.org/packages/jamm/mvc)[ RSS](/packages/jamm-mvc/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

MVC
===

[](#mvc)

Base interfaces, classes to create MVC-designed application

\###Main concept It can be used as a base for building MVC applications.
Most important thing here is interfaces - base of architecture.

\###How it works Request, parsed in Front Controller, goes to Router, from Router to Controller, Controller fills the Response and this Response goes back to user.

\###Services inside There is some models, which can be useful:

- Crypt - for passwords hashing and/or bidirectional encryption (based on mcrypt).
- Sessions - for sessions handling (in Redis by default, but configurable).
- SessionAuthenticator - work with cookies and CSRF-protection. Implemented AngularJS XSRF-token protection mechanism and prefix for JSON responses.

If you want, you can use some services from the Models folder - they are absolutely working and used in live projects.
In general, this library will never require your classes to be extended from classes of library. Main advice - prefer composition over inheritance.
But "never require" doesn't mean "not allow" - if you find that some of classes are good enough to use as a base classes - do it, they are designed to be useful in both ways.

Also, there is templates renderers in the Views folder (PHTML and Twig), and you are welcome to use them.
But if you don't mind - take a look at [AngularJS](http://angularjs.org/). With AngularJS you can use native HTML-pages as templates, which can be served by nginx or Apache without PHP, so your app will require much less resources of server. Also, it means less page reloading (because of ajax-requests) - performance and usability of your app will be much better.
It's just recommendation :)

\###Dependencies Jamm\\HTTP
PHP 5.3+

\###Example of Front Controller with auto-fillable routing

```
class Launcher
{
	public function start(array $config = [])
	{
		$ServiceFactory     = new ServiceFactory(new Config($config));
		$ServiceLocator     = new ControllersServiceLocator($ServiceFactory);
		$FallbackController = new IndexPage();
		$RequestParser      = new RequestParser($ServiceFactory->getRequest());
		$Response           = $ServiceLocator->getResponse();
		$Router = new AutoFillableRouter($RequestParser, $FallbackController);
		$Router->fillRoutesFromList(new RoutesList($config['routes']), __NAMESPACE__.'\\Controller', new ControllerBuilder($ServiceLocator));
		$Controller = $Router->getControllerForRequest();
		$Controller->fillResponse($Response);
		$Response->Send();
	}
}

```

\####config for auto-fillable routing:

```
{
	"routes": {
		"service": "ServiceAPI",
		"user": "UserAPI",
		"record": "RecordAPI"
	}
}

```

\####Example of auto-fillable Controller

```
class ServiceAPI extends AutoInstantiableController implements IRequireServiceLocator
{
	public function fillResponse(\Jamm\HTTP\IResponse $Response)
	{
		$action = $this->ServiceLocator->getRequestParser()->getQueryArrayItem(1);
		if ($action=='get_init_data')
		{
			$data = $this->ServiceLocator->getRedis()->get('data');
			$Response->setBody($data);
		}
	}
}

```

\###Example of Front Controller without auto-filling of routes

```
$RedisServer        = new \Jamm\Memory\RedisServer();
$Request            = new \Jamm\HTTP\Request();
$RequestParser      = new \Jamm\MVC\Controllers\RequestParser($Request);
$TemplatesRenderer  = new \Jamm\RedisDashboard\View\TemplatesRenderer();
$FallbackController = new Controller\Fallback($RedisServer, $TemplatesRenderer);
$Router             = new \Jamm\MVC\Controllers\Router($RequestParser, $FallbackController);
$Response           = new \Jamm\HTTP\Response();

$TemplatesRenderer->setBaseURL('/redis');
$Request->BuildFromInput();
$Router->addRouteForController('db', new Controller\Database($RedisServer, $RequestParser, $TemplatesRenderer));
$Router->addRouteForController('key', new Controller\DBKey($RedisServer, $RequestParser, $TemplatesRenderer));

$Response->setHeader('Content-type', 'text/html; charset=UTF-8');

$Controller = $Router->getControllerForRequest();
$Controller->fillResponse($Response);
$Response->Send();

```

\###Example of usual (non-autofillable) Controller with Twig template rendering

```
class Fallback implements \Jamm\MVC\Controllers\IController
{
	private $Redis;
	private $TemplatesRenderer;

	public function __construct(\Jamm\Memory\IRedisServer $Redis,
								\Jamm\MVC\Views\ITemplatesRenderer $TemplatesRenderer)
	{
		$this->Redis             = $Redis;
		$this->TemplatesRenderer = $TemplatesRenderer;
	}

	public function fillResponse(\Jamm\HTTP\IResponse $Response)
	{
		$StatsMonitor = $this->getNewStatsMonitor($this->Redis);
		$stats        = $StatsMonitor->getStats();
		$databases    = $StatsMonitor->getDatabases();

		$template = $this->TemplatesRenderer->render_Twig_template(
			'IndexPage.twig', array('databases' => $databases, 'stats' => $stats));
		$Response->setBody($template);
	}

	/**
	 * @param \Jamm\Memory\IRedisServer $Redis
	 * @return \Jamm\RedisDashboard\Model\StatsMonitor
	 */
	protected function getNewStatsMonitor(\Jamm\Memory\IRedisServer $Redis)
	{
		return new \Jamm\RedisDashboard\Model\StatsMonitor($Redis);
	}
}

```

\###License [MIT](http://en.wikipedia.org/wiki/MIT_License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/27a19d7616678bc75505ded35bebf1b16d76a3586b103f4bf31f62c74646ba89?d=identicon)[OZ](/maintainers/OZ)

---

Top Contributors

[![e-oz](https://avatars.githubusercontent.com/u/526352?v=4)](https://github.com/e-oz "e-oz (73 commits)")

### Embed Badge

![Health badge](/badges/jamm-mvc/health.svg)

```
[![Health](https://phpackages.com/badges/jamm-mvc/health.svg)](https://phpackages.com/packages/jamm-mvc)
```

###  Alternatives

[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M532](/packages/laravel-passport)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

712181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)[laravel/pail

Easily delve into your Laravel application's log files directly from the command line.

91545.3M590](/packages/laravel-pail)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
