Piko Framework

Piko is a lightweight and flexible PHP micro framework that tries to Keep It Simple. The idea behind this framework is to have a very small footprint, easy to learn and easy to use.

Piko does not come with an ORM or database abstraction layer. You are free to choose any database abstraction layer or ORM you like.

Piko comes with a simple and lightweight template engine but you are free to use any template engine you like.

Piko is licensed under the LGPL v3.0 license.

Fast and Lightweight

Piko has been implemented with performances in mind. Requests are routed quickly using Piko router, one of the fastest PHP router, and the view rendering engine use PHP as template engine (This is what PHP was originally made for).

Its code has a small footprint (around 200kB once installed).

Build application that fits your needs

Enable features via composer packages:

Installation via composer

composer require piko/framework

Inspiration

Concepts used in Piko are inspired by Yii2 framework.


Getting started