PHPackages                             masterforweb/kuri - 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. masterforweb/kuri

ActiveLibrary[Framework](/categories/framework)

masterforweb/kuri
=================

Kuri is a PHP autorouting without regular. Quickly write simple yet powerful web applications and APIs

1.0.2(3y ago)333[2 issues](https://github.com/masterforweb/kuri/issues)MITPHPPHP &gt;=5.2

Since Oct 11Pushed 3y ago2 watchersCompare

[ Source](https://github.com/masterforweb/kuri)[ Packagist](https://packagist.org/packages/masterforweb/kuri)[ Docs](https://github.com/masterforweb/kuri)[ RSS](/packages/masterforweb-kuri/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (1)Dependencies (3)Versions (3)Used By (0)

\_kuri
======

[](#_kuri)

Kuri is minimalist web framework for PHP. Minimum code - maximum speed. Quick start your web application or API.

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

[](#installation)

It's recommended that you use [Composer](https://getcomposer.org/) to install Kuri.

```
composer require masterforweb/kuri
```

Autoroutes:

https://{your domain}/{your function}/param1

or

https://{your domain}/{your class}/{funtion}/param1/param2

or

command line: php {application path}/index.php {your function} param

Hello World
-----------

[](#hello-world)

```
require 'vendor/autoload.php';

kuri();

function index() {
	echo 'Hello World! Is index page';
}
```

Recommended practice: prefix \_kuri
-----------------------------------

[](#recommended-practice-prefix-_kuri)

```
require 'vendor/autoload.php';

_kuri();

function index_kuri() {
	echo 'Hello World! Is index page';
}

function id_kuri(int $id){
	echo "result $id";
}
```

Class example
-------------

[](#class-example)

```
_kuri();

class news_kuri {

	function id($id){
		echo 'ID ='.$id;
	}

}
```

GET, POST
---------

[](#get-post)

```
_kuri();

class news_kuri {

	function get($id){
		echo 'ID ='.$id;
	}

	function post($title, $text) {
		$sql = "INSERT INTO `news` (`title`, `name`) VALUES($title, $text);";

	}

}
```

return array =&gt; 200 OK Content-Type: application/json
--------------------------------------------------------

[](#return-array--200-ok-content-type-applicationjson)

```
require 'vendor/autoload.php';

_kuri();

function about_kuri(){
    return [
       'author' => 'masterforweb',
       'email'  => 'masterforweb@hotmail.com',
       'name'   => 'kuri'
    ];
}
```

```
curl -I http://kuri.dv/about
HTTP/1.1 200 OK
Content-Type: application/json; utf-8

curl  http://kuri.dv/about
{"author":"masterforweb","email":"masterforweb@hotmail.com","name":"kuri"}
```

support:

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance7

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

1315d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1743479?v=4)[AK Delfin](/maintainers/masterforweb)[@masterforweb](https://github.com/masterforweb)

---

Top Contributors

[![masterforweb](https://avatars.githubusercontent.com/u/1743479?v=4)](https://github.com/masterforweb "masterforweb (38 commits)")

---

Tags

frameworkphpapiframeworkmicrorouter

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/masterforweb-kuri/health.svg)

```
[![Health](https://phpackages.com/badges/masterforweb-kuri/health.svg)](https://phpackages.com/packages/masterforweb-kuri)
```

###  Alternatives

[slim/slim

Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs

12.3k49.9M1.3k](/packages/slim-slim)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
