PHPackages                             maks757/yii2-progress - 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. maks757/yii2-progress

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

maks757/yii2-progress
=====================

This component allows users to work with the achievements.

2.5.8(9y ago)068GNU Public LicensePHP

Since Sep 16Pushed 9y ago1 watchersCompare

[ Source](https://github.com/maks757/yii2-progress)[ Packagist](https://packagist.org/packages/maks757/yii2-progress)[ RSS](/packages/maks757-yii2-progress/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (2)Versions (21)Used By (0)

Yii2 progress user
==================

[](#yii2-progress-user)

#### Install

[](#install)

```
php composer.phar require maks757/yii2-progress

```

or

```
composer require maks757/yii2-progress

```

and applying migrations

```
php yii migrate --migrationPath=@vendor/maks757/yii2-progress/migrations

```

or

```
yii migrate --migrationPath=@vendor/maks757/yii2-progress/migrations

```

#### Configuration

[](#configuration)

##### main.php (config)

[](#mainphp-config)

```
'components' => [
    // Progress config
    'progress' => [
        'class' => \bl\progress\Progress::className(),
        'validatorClass' => \bl\progress\components\ProgressComponent::className(),
        'honors' => [
            // name category
            'userConfirm' => [
                'class' => \bl\progress\components\ValidateProgress::className(), //class validator
                'name' => 'Registration success', // name user progress
                'image' => Yii::getAlias('@vendor/maks757/yii2-progress/image/user.png'), //path to image
                'long_description' => '', // 255 chars
                'short_description' => '', // 100 chars
            ]
        ]
    ],
    // Images config
    'imagableProgress' => [
        'class' => 'bl\imagable\Imagable',
        'imageClass' => \bl\progress\components\image\CreateImageImagine::className(),
        'nameClass' => \bl\progress\components\image\GenerateName::className(),
        'imagesPath' => '@webroot/progressImage',
        'categories' => [
            'category' => [
                'progress' => [
                    'origin' => false,
                    'size' => [
                        'long' => [
                            'width' => 500,
                            'height' => 500,
                        ],
                        'short' => [
                            'width' => 200,
                            'height' => 200,
                        ],
                    ]
                ],
            ]
        ]
    ],
    // ...
]
```

#### Using

[](#using)

Add

```
    /**
    *@var Progress $progress
    */
    $progress = Yii::$app->progress;
```

and

```
    // First variant
    // 1 param ( progress category )
    // 2 param ( user id )
    $progress->validateOne('userConfirm', 1);
```

or

```
    // Second variant
    // 1 param ( progress category )
    // its use current user id
    $progress->validate('userConfirm');
```

#### Using example

[](#using-example)

```
$userProgress = \bl\progress\entities\UserProgress::getUserProgress($userRegisterInfo->id);
foreach ($userProgress as $value)
{
    /** *@var Progress $progress */
    $progress = Yii::$app->progress;
    $pathImage = $progress->getImage($value->image->image, 'progress', 'short');

    $content = Html::tag('h3', $value->name);
    $content .= Html::img($pathImage);
    echo Html::tag('div', $content, ['class' => 'col-sm-2']);
}
```

[![Alt text](/image/author.jpg "Optional title")](/image/author.jpg)

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity72

Established project with proven stability

 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

Every ~4 days

Total

20

Last Release

3488d ago

Major Versions

0.0.5 → 1.0.02016-09-21

1.0.0 → 2.0.02016-09-21

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/11841208?v=4)[Cherednyk Maxim](/maintainers/maks757)[@maks757](https://github.com/maks757)

---

Top Contributors

[![maks757](https://avatars.githubusercontent.com/u/11841208?v=4)](https://github.com/maks757 "maks757 (26 commits)")

---

Tags

yii2progressmaks757module progresscomponent progress

### Embed Badge

![Health badge](/badges/maks757-yii2-progress/health.svg)

```
[![Health](https://phpackages.com/badges/maks757-yii2-progress/health.svg)](https://phpackages.com/packages/maks757-yii2-progress)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[dmstr/yii2-cookie-consent

Yii2 Cookie Consent Widget

1454.6k](/packages/dmstr-yii2-cookie-consent)[imanilchaudhari/yii2-currency-converter

This extension will help to find out current currency conversion rate.

1911.7k](/packages/imanilchaudhari-yii2-currency-converter)

PHPackages © 2026

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