perf/vc

This package is abandoned and no longer maintained. No replacement package was suggested.

Simple View-Controller stack

7.0.0 2023-07-04 13:52 UTC

README

VC (View, Controller) is a simple and lightweight PHP View Controller stack.

Installation & Requirements

Install it with Composer:

composer require perf/vc

Usage

<?php

use perf\Vc\VcRunner;

$container = ...; // retrieve Dependency injection container from your application.

$runner = $container->get(VcRunner::class);
$runner->run();