PHPackages                             digi-soft-ug/nikanzophp - 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. digi-soft-ug/nikanzophp

ActiveLibrary[Framework](/categories/framework)

digi-soft-ug/nikanzophp
=======================

Open-source modular PHP framework with attribute routing, DI, middleware, CLI, and migrations

10PHPCI passing

Since Jan 7Pushed 4mo agoCompare

[ Source](https://github.com/digi-soft-ug/NikanzoPHP)[ Packagist](https://packagist.org/packages/digi-soft-ug/nikanzophp)[ RSS](/packages/digi-soft-ug-nikanzophp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

[![CI](https://github.com/digi-soft-ug/NikanzoPHP/actions/workflows/ci.yml/badge.svg)](https://github.com/digi-soft-ug/NikanzoPHP/actions/workflows/ci.yml) [![codecov](https://camo.githubusercontent.com/e6b9de2a00de8c83aa547f5e352c6e4eaa4d7fb4fb15ab9402d4d36bd81965be/68747470733a2f2f636f6465636f762e696f2f67682f646967692d736f66742d75672f4e696b616e7a6f5048502f6272616e63682f6d61696e2f67726170682f62616467652e737667)](https://codecov.io/gh/digi-soft-ug/NikanzoPHP) [![Packagist Downloads](https://camo.githubusercontent.com/033aad85e7ddc8cb70a3470b7eb6063ea481463b4651f046b2341f0c3a1a54aa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f646967692d736f66742d75672f6e696b616e7a6f7068702e737667)](https://packagist.org/packages/digi-soft-ug/nikanzophp)

NikanzoPHP
==========

[](#nikanzophp)

Open-source, modular PHP framework with attribute routing, PSR-7/15, DI, CLI, and migrations. Hosted at .

Features
--------

[](#features)

- Routing with PHP 8 attributes (`#[Route]`), PSR-7 responses
- PSR-15 middleware pipeline (e.g. Auth, ErrorHandler, RateLimit, JWT)
- DI container with `#[Inject]` / `#[Singleton]` / `#[Service]`, built on Symfony DependencyInjection
- Optional Twig templating via `TemplateRenderer` (`templates/`)
- CLI `php nikan`: `make:controller`, `make:usecase`, `db:migrate`, `db:seed`, `route:cache`
- Migration system (SQLite default, MySQL/PostgreSQL possible) with `migrations` status table
- ModuleLoader auto-loads `src/Modules/*/Module` for reuse; Hooks for extension points

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

[](#installation)

```
git clone https://github.com/digi-soft-ug/NikanzoPHP.git
cd NikanzoPHP
composer install
```

---

Community &amp; Promotion
-------------------------

[](#community--promotion)

### Social Media Post (Reddit r/php &amp; Twitter/X)

[](#social-media-post-reddit-rphp--twitterx)

🚀 Neues Open-Source-Framework: NikanzoPHP!
Entdecke ein modernes, modulares PHP-Framework mit PHP 8-Attribute-Routing, flexibler Modularität und leistungsstarken CLI-Tools. Entwickle skalierbare Anwendungen mit klarer Architektur und moderner Dependency Injection.
Jetzt auf GitHub:
\#php #framework #opensource #php8

Quickstart
----------

[](#quickstart)

- Dev server: `php -S 127.0.0.1:8000 -t public public/index.php`
- Hello endpoint: `http://127.0.0.1:8000/hello`
- CLI help: `php nikan list`

Example: HelloController
------------------------

[](#example-hellocontroller)

```
