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
Requires
- php: >=8.2
- ext-json: *
- ext-simplexml: *
- perf/caching: ^3.1
- perf/http-status: ^3.0
- perf/source: ^2.0
- perf/timing: ^2.0
- symfony/config: ^6.0
- symfony/dependency-injection: ^6.0
- symfony/expression-language: ^6.0
- symfony/yaml: ^6.0
- twig/twig: ^3.0
Requires (Dev)
- ext-xdebug: *
- phing/phing: ^2.16
- phpmd/phpmd: ^2.8
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^10.2
- rector/rector: ^0.17.1
- squizlabs/php_codesniffer: ^3.5
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();