PHPackages                             pantera-digital/yii2-helpdesk - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. pantera-digital/yii2-helpdesk

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

pantera-digital/yii2-helpdesk
=============================

Yii2 helpdesk module

5892[2 issues](https://github.com/pantera-digital/yii2-helpdesk/issues)PHP

Since Apr 12Pushed 2y ago5 watchersCompare

[ Source](https://github.com/pantera-digital/yii2-helpdesk)[ Packagist](https://packagist.org/packages/pantera-digital/yii2-helpdesk)[ RSS](/packages/pantera-digital-yii2-helpdesk/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

yii2-helpdesk
=============

[](#yii2-helpdesk)

NOTICE: This module depends on pantera-digital/yii2-media

Install
-------

[](#install)

Run

```
php composer require pantera-digital/yii2-helpdesk "*"

```

Or add to composer.json

```
"pantera-digital/yii2-helpdesk": "*",

```

and execute:

```
php composer update

```

Configure your app :

```
 [
    'bootstrap' => [... ,'media'],
    'modules' => [
        ...
        'media' => [
            'class' => pantera\media\Module::className(),
            'permissions' => ['admin'], //permissions for administrate media module
            'mediaUrlAlias' => 'path for url access to media files',
            'mediaFileAlias' => 'path for storage media files',
            'tableName' => 'pantera_media', //table name for media
        ],
        'helpdesk' => [
            'class' => \pantera\helpdesk\Module::class,
            'profileModel' => function() { //here u can catch the current user profile model
                if(!Yii::$app->user->isGuest) {
                    return Yii::$app->user->identity->profile;
                } else {
                    return null;
                }
            },
            'nameAttribute' => 'HERE NAME ATTRIBUTE OF USER PROFILE MODEL',
            'emailAttribute' => 'HERE EMAIL ATTRIBUTE OF USER MODEL',
            'googleCaptchaSiteKey' => 'here your google recaptcha site key',
            'googleCaptchaSecret' => 'here your google recaptcha secret',
            'mailNotificationView' => 'here you can set the path to your mail view like @app/mail/view_name',
            'userClass' => 'this is a class for your user module by default it dependency on \dektrium\user\models\User';
        ],
    ],
    ...
];
```

Configure your admin app:

```
 'helpdesk' => [
            'class' => \pantera\helpdesk\Module::class,
            'viewPath' => '@vendor/pantera-digital/yii2-helpdesk/admin/views',
            'controllerNamespace' => 'pantera\helpdesk\admin\controllers'
 ],
```

Add to your console config:

```
 ...
 'controllerMap' => [
        'migrate' => [
            'class' => MigrateController::className(),
            'migrationPath' => [
                ....
                '@vendor/pantera-digital/yii2-helpdesk/migrations',
                '@pantera/media/migrations',
                ....
            ],
        ],
 ...
```

or run migrations:

```
php yii migrate --migrationPath=vendor/pantera-digital/yii2-media/migrations
php yii migrate --migrationPath=vendor/pantera-digital/yii2-helpdesk/migrations

```

Available actions:

###### For admin:

[](#for-admin)

```
helpdesk/default/index
helpdesk/default/view

```

###### For user:

[](#for-user)

```
helpdesk/default/index
helpdesk/default/view

```

###### For no-auth user:

[](#for-no-auth-user)

```
helpdesk/defaul/index

```

### NOTICE: Tested only on yii2 advanced application

[](#notice-tested-only-on-yii2-advanced-application)

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance12

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity19

Early-stage or recently created project

 Bus Factor1

Top contributor holds 67.4% 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/642519?v=4)[Alex Kostin](/maintainers/webmayak)[@webmayak](https://github.com/webmayak)

---

Top Contributors

[![numkms](https://avatars.githubusercontent.com/u/22604903?v=4)](https://github.com/numkms "numkms (29 commits)")[![webmayak](https://avatars.githubusercontent.com/u/642519?v=4)](https://github.com/webmayak "webmayak (13 commits)")[![tirrex](https://avatars.githubusercontent.com/u/13480418?v=4)](https://github.com/tirrex "tirrex (1 commits)")

### Embed Badge

![Health badge](/badges/pantera-digital-yii2-helpdesk/health.svg)

```
[![Health](https://phpackages.com/badges/pantera-digital-yii2-helpdesk/health.svg)](https://phpackages.com/packages/pantera-digital-yii2-helpdesk)
```

PHPackages © 2026

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