acffdev/php-core

Minimalist MVC framework for websites.

v1.0.0 2022-08-18 15:31 UTC

This package is auto-updated.

Last update: 2024-04-18 19:31:26 UTC


README

Minimalist MVC framework for websites.

Instalation

composer require acffdev/php-core

Usage

create an index.php file with the following code at the root of your public directory

// composer autoload
require_once __DIR__.'/vendor/autoload.php';

// namespace
use Acffdev\PhpCore\App as App;

// initializes
try { 
	App::run();
} catch(Exception $e) { 
	echo $e->getMessage(); 
}