for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Albert221\Validation\Rule;
class UnicodeAlphanumeric extends Alphanumeric implements RuleInterface
{
public function test($value)
return (bool)preg_match('/^[\pL0-9]+$/u', $value);
}