Merge pull request #280 from resurtm/validator-idn
Fixes #143. UrlValidator and EmailValidator IDN support.
Showing
... | @@ -69,11 +69,26 @@ | ... | @@ -69,11 +69,26 @@ |
"bin": [ | "bin": [ | ||
"yii/yiic" | "yii/yiic" | ||
], | ], | ||
"repositories": [ | |||
{ | |||
"type": "package", | |||
"package": { | |||
"name": "bestiejs/punycode.js", | |||
"version": "1.2.1", | |||
"source": { | |||
"url": "git://github.com/bestiejs/punycode.js.git", | |||
"type": "git", | |||
"reference": "1.2.1" | |||
} | |||
} | |||
} | |||
], | |||
"require": { | "require": { | ||
"php": ">=5.3.0", | "php": ">=5.3.0", | ||
"michelf/php-markdown": "1.3", | "michelf/php-markdown": "1.3", | ||
"twig/twig": "1.12.*", | "twig/twig": "1.12.*", | ||
"smarty/smarty": "3.1.*", | "smarty/smarty": "3.1.*", | ||
"ezyang/htmlpurifier": "v4.5.0" | "ezyang/htmlpurifier": "v4.5.0", | ||
"bestiejs/punycode.js": "1.2.1" | |||
} | } | ||
} | } |
Please
register
or
sign in
to comment