PHPackages                             philiplambok/mikasa - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. philiplambok/mikasa

ActiveLibrary[Framework](/categories/framework)

philiplambok/mikasa
===================

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

1.0(9y ago)3173PHP

Since Jun 30Pushed 8y ago1 watchersCompare

[ Source](https://github.com/philiplambok/mikasa)[ Packagist](https://packagist.org/packages/philiplambok/mikasa)[ RSS](/packages/philiplambok-mikasa/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Mikasa Framework
================

[](#mikasa-framework)

[![Packagist](https://camo.githubusercontent.com/9c820717037532ef215dcf6d232699bcd0a9aed2c35eeb71268f90c374963a9d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7068696c69706c616d626f6b2f6d696b6173612e7376673f6d61784167653d32353932303030)](https://packagist.org/packages/philiplambok/mikasa)

[![Mikasa!](https://camo.githubusercontent.com/03562fac0eeb9ca9d87db20de738ce29607349efa8f97d567314d0dac6fb3acd/687474703a2f2f7061312e6e61727669692e636f6d2f353739312f636535316463613839646430383731356332303239303139323863333438623732363437333236645f68712e676966)](https://camo.githubusercontent.com/03562fac0eeb9ca9d87db20de738ce29607349efa8f97d567314d0dac6fb3acd/687474703a2f2f7061312e6e61727669692e636f6d2f353739312f636535316463613839646430383731356332303239303139323863333438623732363437333236645f68712e676966)

Mikasa Framework is A Simple MVC(Model View Controller) PHP Framework. Mikasa Framework is suitable with you who familiar with CodeIgniter or just new in this pattern.

Installation
------------

[](#installation)

You need to install xampp with &gt;= php 5.6 and composer. The installation we have to option, you can just download or clone this repo.

```
$ git clone https://github.com/philiplambok/mikasa.git
$ cd mikasa

```

or you can install with composer **\[Recomended\]**

```
$ composer create-project philiplambok/mikasa myapp --prefer-dist -vvv
$ cd myapp

```

or just download from [stable releases](https://github.com/philiplambok/mikasa/releases)

Usage
-----

[](#usage)

In MVC Pattern, you will familliar with Model (Class that interact with database), View (File that handle the UI) and Controller (Class that manage the logic and routing).

You can run the project using build in php server, with type this command :

```
$ php -S localhost:8000

```

That command will be running your code in localhost port 8000. You can open your browser and type to url box :

### Controller

[](#controller)

Here is an example of a basic controller.

```
