macgyer/yii2-data-uri-validator

Data URI validator for Yii2

1.0.1 2016-10-31 21:42 UTC

This package is auto-updated.

Last update: 2024-04-10 07:20:26 UTC


README

Data URI validator for Yii2 framework

Installation

The preferred way of installation is through Composer. If you don't have Composer you can get it here: https://getcomposer.org/

To install the package add the following to the require section of your composer.json:

"require": {
    "macgyer/yii2-data-uri-validator": "*"
},

Usage

Just add the validator to your Model class:

// rules
public function rules()
{
  return [
      // more rules
      ['some_property', \macgyer\yii2dataurivalidator\DataUriValidator::className()],
  ];
}