PHPackages                             dezull/help-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. dezull/help-bundle

ActiveSymfony-bundle

dezull/help-bundle
==================

Documentation browser/generator for Symfony2

1.0.1(13y ago)236MITPHPPHP &gt;=5.3.0

Since Sep 11Pushed 13y ago2 watchersCompare

[ Source](https://github.com/dezull/HelpBundle)[ Packagist](https://packagist.org/packages/dezull/help-bundle)[ Docs](https://github.com/dezull/HelpBundle)[ RSS](/packages/dezull-help-bundle/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (3)Used By (0)

DezullHelpBundle
================

[](#dezullhelpbundle)

Help/Documentation bundle for Symfony2

**Incompatible with Symfony 2.1.x**

This bundle provides interface for viewing web application's documentation or help browser. The administration backend will allow users to manage documentation content. The included frontend template use two-pane layout to show help topics &amp; content.

Dependencies
------------

[](#dependencies)

1. symfony/framework-bundle
2. doctrine/common
3. symfony/doctrine-bundle
4. TrsteelCkeditorBundle (Optional)

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

[](#installation)

### Using deps file

[](#using-deps-file)

#### 1. Add the bundle to deps

[](#1-add-the-bundle-to-deps)

```
[DezullHelpBundle]
    git=git://github.com/dezull/HelpBundle.git
    target=/bundles/Dezull/Bundle/HelpBundle

```

#### 2. Install vendor

[](#2-install-vendor)

```
$ php bin/vendors install

```

#### 3. Add the bundle to app/AppKernel.php

[](#3-add-the-bundle-to-appappkernelphp)

```
$bundles = array(
    ...
    new Dezull\Bundle\HelpBundle\DezullHelpBundle(),
    ...
);

```

#### 4. Add namespace to app/autoload.php

[](#4-add-namespace-to-appautoloadphp)

```
$loader->registerNamespaces(array(
    ...
    'Dezull' => __DIR__.'/../vendor/bundles',
    ...
));

```

#### 5. Add routes. Customize to suite your application.

[](#5-add-routes-customize-to-suite-your-application)

```
# This is the only required route need
DezullHelpBundle:
    prefix: /prefix
    resource: "@DezullHelpBundle/Resources/config/routing/main.yml"

_help_topic:
    type:     annotation
    pattern: /help/!{title}
    defaults: { _controller: DezullHelpBundle:Browser:index }

```

#### 6. Install required tables into database, for example:

[](#6-install-required-tables-into-database-for-example)

```
CREATE TABLE help_category (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(120) NOT NULL, PRIMARY KEY(id)) ENGINE = InnoDB;
CREATE TABLE help_topic (id INT AUTO_INCREMENT NOT NULL, category_id INT DEFAULT NULL, title VARCHAR(120) NOT NULL, content LONGTEXT NOT NULL, INDEX IDX_FAD81EE212469DE2 (category_id), PRIMARY KEY(id)) ENGINE = InnoDB;
ALTER TABLE help_topic ADD CONSTRAINT FK_FAD81EE212469DE2 FOREIGN KEY (category_id) REFERENCES help_category(id);

```

### Using composer.json

[](#using-composerjson)

#### 1. Add the bundle to composer.json

[](#1-add-the-bundle-to-composerjson)

```
"require": {
    ...,
    "dezull/help-bundle": "1.0.1"
},

```

#### 2. Update the dependencies

[](#2-update-the-dependencies)

```
$ composer.phar update

```

Usage
-----

[](#usage)

1. Use the admin interface to add new a category and topics. For example, access it via **
2. To link to the help page, use route to DezullHelpBundle:Browser:Index with topic title as its only parameter. For example, **

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

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

Unknown

Total

1

Last Release

4994d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/633238590fce2a081f23448c6ebbcc707b3f4758875e3561439d958f0c9802b4?d=identicon)[dezull](/maintainers/dezull)

---

Top Contributors

[![dezull](https://avatars.githubusercontent.com/u/318483?v=4)](https://github.com/dezull "dezull (60 commits)")

---

Tags

helpDocumentation generator

### Embed Badge

![Health badge](/badges/dezull-help-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/dezull-help-bundle/health.svg)](https://phpackages.com/packages/dezull-help-bundle)
```

###  Alternatives

[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

22.8k69.3k](/packages/grumpydictator-firefly-iii)[firefly-iii/data-importer

Firefly III Data Import Tool.

7545.8k](/packages/firefly-iii-data-importer)[mdwheele/zalgo

His six mouths speak in different tongues, and the seventh shall sing the song that ends the earth.

4619.7k9](/packages/mdwheele-zalgo)[deweller/cliopts

A no-nonsense command-line options parser and help generator for PHP CLI apps.

1518.3k](/packages/deweller-cliopts)[irazasyed/docgen

Streamline your Laravel package development with automatic facade documentation using Docgen for Laravel

233.8k10](/packages/irazasyed-docgen)

PHPackages © 2026

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