Felds/CodeGeneratorBundle
Create random strings based on length and character list
Installation
1. Require the bundle with composer
./composer.phar require felds/code-generator-bundle dev-master2. Enable the bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Felds\CodeGeneratorBundle(),
);
}