承接 bjornbasar/karhu 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bjornbasar/karhu

最新稳定版本:v0.1.0

Composer 安装命令:

composer require bjornbasar/karhu

包简介

Minimal PHP microframework — attribute-routed, zero dependencies, PHP 8.3+

README 文档

README

Minimal PHP microframework — attribute-routed, zero runtime dependencies, PHP 8.3+.

CI

Why karhu?

A small framework you can read end-to-end. ~1200 LOC core, no closures-as-routes, no YAML, no required dependencies — controllers declare routes via PHP attributes. Extras (DB, queue, view) ship as separate packages.

Install

composer create-project bjornbasar/karhu-skeleton myapp
cd myapp
composer serve   # http://localhost:8080

Or add karhu to an existing project:

composer require bjornbasar/karhu

Hello world

use Karhu\Attributes\Route;
use Karhu\Http\Response;

final class HomeController {
    #[Route('GET', '/hello/{name}')]
    public function hello(string $name): Response {
        return Response::json(['hello' => $name]);
    }
}

Register the controller in config/controllers.php and karhu's attribute scanner wires the route automatically.

What's in the box

Capability Where
Attribute routing (#[Route]) src/Http/Router.php + src/Attributes/Route.php
Middleware pipeline (PSR-15 shape) src/Http/MiddlewarePipeline.php
Auto-wiring DI container (PSR-11 shape) src/Container/Container.php
RBAC + PasswordHasher (argon2id) src/Auth/
Session, CSRF, CORS, RequireRole middleware src/Middleware/
Validation attributes (#[Required], #[StringLength], #[In]) src/Http/Validation/
RFC 7807 error responses src/Error/ExceptionHandler.php
CLI dispatcher (#[Command]) src/Cli/ + bin/karhu
Logger interface (PSR-3 shape) src/Log/
Production route cache bin/karhu route:cache

Companion packages

Package Purpose
karhu-skeleton Starter app template
karhu-db Thin PDO wrapper + active-record base + PdoUserRepository
karhu-queue Queue/worker abstraction, ships with DB driver
karhu-view Template engine bridge (Twig + Plates adapters)
istrbuddy Reference issue-tracker app dogfooding the full stack

Development

composer install
composer check           # cs-check + phpstan + tests
composer test            # PHPUnit only
composer analyse         # PHPStan level 8
composer cs-fix          # php-cs-fixer (PER-CS2.0)
bin/karhu route:cache    # compile route cache for production

PHP 8.3 + 8.4 are tested via the GitHub Actions matrix.

Documentation

  • DOCS.md — tech stack, directory layout, design decisions
  • docs/ — MkDocs Material source (full reference, ADRs)
  • docs/adr/ — architectural decision records

License

MIT

统计信息

  • 总下载量: 13
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 6
  • 依赖项目数: 1
  • 推荐数: 1

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固