acffdev / php-core
Minimalist MVC framework for websites.
Installs: 25
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/acffdev/php-core
Requires
- php: >=5.3
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(); }