perf/vc

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

Simple View-Controller stack

Installs: 624

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/perf/vc

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();