m1roff/yii2-behavior-jsonfield

2.0.0 2022-09-08 16:34 UTC

README

Installation

The preferred way to install this extension is through composer.

Either run

composer require mirkhamidov/yii2-behavior-jsonfield "dev-master"

Configure

add behavior entry to you model

/** @inheritdoc */
public function behaviors() {
    return ArrayHelper::merge(parent::behaviors(), [
        'interestsJson' => [
            'class' => JsonFieldBehavior::class,
            'field' => 'interests',
        ],
        'languagesJson' => [
            'class' => JsonFieldBehavior::class,
            'field' => 'languages',
        ],
    ]);
}