/Kotori.php

A Tiny Model-View-Controller(MVC) PHP Framework

Primary LanguagePHPApache License 2.0Apache-2.0

Kotori.php

Build Status GitHub release License

Kotori.php is a Tiny Model-View-Controller(MVC) PHP Framework.

Installation

It's recommended that you use Composer to install Kotori.php.

$ composer require kokororin/kotori-php

Or via git.

$ git clone https://github.com/kokororin/Kotori.php

Usage

<?php
# via Composer
require 'vendor/autoload.php';
# via git
# require './Kotori.php';

$app = new Kotori();

$config['APP_PATH'] = './app/';

$app->run();

Tests

To execute the test suite, you'll need phpunit.

$ phpunit --configuration phpunit.xml

LICENSE

Licensed under the Apache License, Version 2.0 (the "License").

Learn More

Learn more at these links:

Thanks