kfreiman/yii2-json-attribute-behavior

Yii2 Behavior for encode and decode json stored attributes

Installs: 12 390

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 1

Open Issues: 1

Type:yii2-extension

pkg:composer/kfreiman/yii2-json-attribute-behavior

v0.1 2016-02-10 11:01 UTC

This package is not auto-updated.

Last update: 2025-10-06 17:26:16 UTC


README

Yii2 Behavior for encode and decode json stored attributes

Instalation

composer require kfreiman/yii2-json-attribute-behavior "dev-master"

Use

public function behaviors()
{
    return [
        'jsonAttributes' => [
            'class' => JsonAttributeBehavior::className(),
            'attributes' => [
                'attrJson' => 'attr'
            ],
        ],
    ];
}