{"id":36295231,"url":"https://github.com/masterforweb/kuri","last_synced_at":"2026-01-11T10:04:03.377Z","repository":{"id":27337072,"uuid":"30811846","full_name":"masterforweb/kuri","owner":"masterforweb","description":"kURI is a web application micro framework. Minimum code, maximum speed, minimum errors, quick start.","archived":false,"fork":false,"pushed_at":"2022-12-03T06:49:41.000Z","size":82,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-12T16:51:33.939Z","etag":null,"topics":["framework","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/masterforweb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-14T23:16:26.000Z","updated_at":"2022-10-13T14:18:44.000Z","dependencies_parsed_at":"2023-01-14T06:31:12.871Z","dependency_job_id":null,"html_url":"https://github.com/masterforweb/kuri","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/masterforweb/kuri","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masterforweb%2Fkuri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masterforweb%2Fkuri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masterforweb%2Fkuri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masterforweb%2Fkuri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masterforweb","download_url":"https://codeload.github.com/masterforweb/kuri/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masterforweb%2Fkuri/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28299709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T08:21:30.231Z","status":"ssl_error","status_checked_at":"2026-01-11T08:21:26.882Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["framework","php"],"created_at":"2026-01-11T10:04:02.768Z","updated_at":"2026-01-11T10:04:03.373Z","avatar_url":"https://github.com/masterforweb.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# _kuri\n\nKuri is minimalist web framework for PHP. Minimum code - maximum speed. Quick start your web application or API.\n\n## Installation\n\nIt's recommended that you use [Composer](https://getcomposer.org/) to install Kuri.\n\n```bash\ncomposer require masterforweb/kuri\n```\n\nAutoroutes:\n\nhttps://{your domain}/{your function}/param1\n\nor\n\nhttps://{your domain}/{your class}/{funtion}/param1/param2\n\nor\n\ncommand line:\nphp {application path}/index.php {your function} param\n\n\n \n## Hello World\n\n```php\n\nrequire 'vendor/autoload.php';\n\nkuri();\n\nfunction index() {\n\techo 'Hello World! Is index page';\t\n}\n```\n\n\n## Recommended practice: prefix _kuri\n\n```php\n\nrequire 'vendor/autoload.php';\n\n_kuri();\n\nfunction index_kuri() {\n\techo 'Hello World! Is index page';\t\n}\n\nfunction id_kuri(int $id){\n\techo \"result $id\";\n}\n\n```\n\n## Class example\n\n```php\n\n_kuri();\n\nclass news_kuri {\n\t\n\tfunction id($id){\n\t\techo 'ID ='.$id;\n\t}\n\n}\n\n```\n\n\n## GET, POST\n\n```php\n\n_kuri();\n\nclass news_kuri {\n\t\n\tfunction get($id){\n\t\techo 'ID ='.$id;\n\t}\n\n\tfunction post($title, $text) {\n\t\t$sql = \"INSERT INTO `news` (`title`, `name`) VALUES($title, $text);\";\n\n\t}\n\n}\n\n```\n\n\n## return array =\u003e 200 OK Content-Type: application/json\n\n```php\n\nrequire 'vendor/autoload.php';\n\n_kuri();\n\n\nfunction about_kuri(){\n    return [\n       'author' =\u003e 'masterforweb',\n       'email'  =\u003e 'masterforweb@hotmail.com',\n       'name'   =\u003e 'kuri'\n    ];\n}\n\n\n```\n\n```bash\ncurl -I http://kuri.dv/about\nHTTP/1.1 200 OK\nContent-Type: application/json; utf-8\n\ncurl  http://kuri.dv/about \n{\"author\":\"masterforweb\",\"email\":\"masterforweb@hotmail.com\",\"name\":\"kuri\"}\n\n```\n\n\nsupport: masterforweb@hotmail.com \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasterforweb%2Fkuri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasterforweb%2Fkuri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasterforweb%2Fkuri/lists"}