Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/piko-framework/piko
a PHP MVC Web micro framework
https://github.com/piko-framework/piko
composer framework micro-framework mvc mvc-framework php router
Last synced: about 1 month ago
JSON representation
a PHP MVC Web micro framework
- Host: GitHub
- URL: https://github.com/piko-framework/piko
- Owner: piko-framework
- License: lgpl-3.0
- Created: 2019-02-06T10:34:17.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2023-11-08T12:43:13.000Z (about 1 year ago)
- Last Synced: 2024-10-28T17:13:05.782Z (2 months ago)
- Topics: composer, framework, micro-framework, mvc, mvc-framework, php, router
- Language: PHP
- Homepage: https://piko-framework.github.io/
- Size: 190 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Piko
[![build](https://github.com/piko-framework/piko/actions/workflows/php.yml/badge.svg)](https://github.com/piko-framework/piko/actions/workflows/php.yml)
[![Coverage Status](https://coveralls.io/repos/github/piko-framework/piko/badge.svg?branch=main)](https://coveralls.io/github/piko-framework/piko?branch=main)Piko is a micro framework to build modular [MVC](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller)
applications.[https://piko-framework.github.io/](https://piko-framework.github.io/)
## specifications
- Compliant with [PSR-4](https://www.php-fig.org/psr/psr-4), [PSR-7](https://www.php-fig.org/psr/psr-7),
[PSR-14](https://www.php-fig.org/psr/psr-14) and [PSR-15](https://www.php-fig.org/psr/psr-15)
- Lightweight: Code base including its dependencies is under 200kb.
- Blazing fast: Fast router ([Piko router](https://github.com/piko-framework/router)), components lazy loading and
using PHP as template engine.
- Customizable: The framework components can be customized throw events and behavior injections.
- Stable: All framework parts have been well tested.
- Modular : MVC logic is packaged into modules.## Installation via composer
```bash
composer require piko/framework
```## Quick start
The [Piko project skeletton](https://github.com/piko-framework/piko-project) can be used to start a piko based project.
## Documentation
[https://piko-framework.github.io/](https://piko-framework.github.io/)
## Inspiration
Concepts used in Piko were initially inspired from the [Yii2 framework](https://www.yiiframework.com/).