PHPackages                             nowo-tech/wiki-bundle - 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. nowo-tech/wiki-bundle

ActiveSymfony-bundle

nowo-tech/wiki-bundle
=====================

Symfony bundle for versionable team wiki pages (Outline/Notion-style) with Tiptap rich text

v1.3.1(3w ago)07↓75%MITPHPPHP &gt;=8.2 &lt;8.6CI passing

Since Jul 13Pushed 1mo agoCompare

[ Source](https://github.com/nowo-tech/WikiBundle)[ Packagist](https://packagist.org/packages/nowo-tech/wiki-bundle)[ Docs](https://github.com/nowo-tech/WikiBundle)[ RSS](/packages/nowo-tech-wiki-bundle/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (5)Dependencies (66)Versions (12)Used By (0)

Wiki Bundle
===========

[](#wiki-bundle)

[![CI](https://github.com/nowo-tech/WikiBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/nowo-tech/WikiBundle/actions/workflows/ci.yml) [![Packagist Version](https://camo.githubusercontent.com/4d56e96c4ef2bff35f2e5e22ea43e3d9db413b3fc1e37829dcf7faf43456344a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f776f2d746563682f77696b692d62756e646c652e7376673f7374796c653d666c6174)](https://packagist.org/packages/nowo-tech/wiki-bundle) [![Packagist Downloads](https://camo.githubusercontent.com/6750bed64a63c1a4ef80b57db2ae51524b76ebaccde69b77b5fb4cebf7f9794c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f776f2d746563682f77696b692d62756e646c652e737667)](https://packagist.org/packages/nowo-tech/wiki-bundle) [![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE) [![PHP](https://camo.githubusercontent.com/3f99b197569aa2dcfbefff17ecc68d74098e7f929d8b52dc40f3a898f740eae1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242343f6c6f676f3d706870)](https://php.net) [![Symfony](https://camo.githubusercontent.com/7d2600c853ce86ff0be56b7d04cbd9e1f755df760e06d0fb72d70bb10f794702/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53796d666f6e792d372e34253230253743253230382e30253230253743253230382e312d3030303030303f6c6f676f3d73796d666f6e79)](https://symfony.com) [![Coverage](https://camo.githubusercontent.com/cd0704b56f1d56def350b6d0164316307bb2f47834225fd85443b6fb0059bc73/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f7665726167652d3130302532352d627269676874677265656e)](#tests-and-coverage) [![GitHub stars](https://camo.githubusercontent.com/856a03c863cb8440771b60af63216764d17d7f29eab046939cd03edaedcdda70/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6e6f776f2d746563682f57696b6942756e646c652e7376673f7374796c653d736f6369616c266c6162656c3d53746172)](https://github.com/nowo-tech/WikiBundle)

> ⭐ **Found this useful?** Give it a **star** on [GitHub](https://github.com/nowo-tech/WikiBundle) so more developers can find it.

Symfony bundle for a **versionable team wiki**: spaces, page trees, immutable revisions, diff, search, and Tiptap rich-text editing (Notion-like variant).

Features
--------

[](#features)

- Wiki **spaces** scoped per team or user
- **Pages** with slug, parent/child tree, archive (revisions kept)
- **Immutable revisions** on every save
- **Revision diff** between any two versions
- Full-text **search** in title and current revision body (per space or all accessible spaces), with contextual excerpts
- **Import / export** — Outline and Notion Markdown trees (UI + `wiki:import` / `wiki:export` commands)
- **Symfony AI (optional)** — ask questions about wiki content with RAG context (`symfony/ai-bundle`)
- `WikiAccessCheckerInterface` + `WikiTeamMembershipResolverInterface` for app ACL
- Twig layout overrides + CSRF on POST actions
- Integrates **[TiptapEditorBundle](https://github.com/nowo-tech/TiptapEditorBundle)** (`variant: notion` by default)

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

[](#installation)

```
composer require nowo-tech/wiki-bundle nowo-tech/tiptap-editor-bundle
```

```
# config/packages/nowo_wiki.yaml
nowo_wiki:
    user_class: App\Entity\User
```

See [Installation](docs/INSTALLATION.md).

Demo
----

[](#demo)

```
make -C demo/symfony8 up
# Demo started at: http://localhost:8025  →  /tools/wiki
```

Documentation
-------------

[](#documentation)

- [GitHub Actions CI requirements](docs/GITHUB_CI.md)
- [Installation](docs/INSTALLATION.md)
- [Configuration](docs/CONFIGURATION.md)
- [Usage](docs/USAGE.md)
- [Contributing](docs/CONTRIBUTING.md)
- [Code of Conduct](CODE_OF_CONDUCT.md)
- [Changelog](docs/CHANGELOG.md)
- [Upgrading](docs/UPGRADING.md)
- [Release](docs/RELEASE.md)
- [Security](docs/SECURITY.md)
- [Engram](docs/ENGRAM.md)
- [Spec-driven development](docs/SPEC-DRIVEN-DEVELOPMENT.md)
- [GitHub Spec Kit](docs/SPEC-KIT.md)

### Additional documentation

[](#additional-documentation)

- [Demo with FrankenPHP](docs/DEMO-FRANKENPHP.md)

Tests and coverage
------------------

[](#tests-and-coverage)

LanguageCoveragePHP**100%** — `make test-coverage`TypeScript**100%** — `make test-ts` (wiki assets)PHPUnit: **230 tests**. Coverage threshold enforced via `make test-coverage-100` / `composer test-coverage-100`.

License
-------

[](#license)

MIT — see [LICENSE](LICENSE).

###  Health Score

44

—

FairBetter than 90% of packages

Maintenance93

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 57.7% 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 ~2 days

Total

11

Last Release

24d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e7947bfc3f2ce9574a18a2c60f3d95b5d1b0740e65dc929332c92f1df21f75ab?d=identicon)[HecFranco](/maintainers/HecFranco)

---

Top Contributors

[![HecFranco](https://avatars.githubusercontent.com/u/24323276?v=4)](https://github.com/HecFranco "HecFranco (15 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4)](https://github.com/actions-user "actions-user (4 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (1 commits)")

---

Tags

phpsymfonytiptapdocumentationversioningfrankenphpwikiKnowledge BaseSymfony Bundle

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/nowo-tech-wiki-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/nowo-tech-wiki-bundle/health.svg)](https://phpackages.com/packages/nowo-tech-wiki-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.7M445](/packages/easycorp-easyadmin-bundle)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k4.0M552](/packages/pimcore-pimcore)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1718.2k18](/packages/2lenet-crudit-bundle)[contao/core-bundle

Contao Open Source CMS

1231.7M3.2k](/packages/contao-core-bundle)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9830.9k80](/packages/open-dxp-opendxp)[kimai/kimai

Kimai - Time Tracking

5.0k9.7k1](/packages/kimai-kimai)

PHPackages © 2026

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