Skip to content

acffdev/php-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

php-core

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published