felds/code-generator-bundle

Generate random strings.

v0.1.0 2014-05-01 02:11 UTC

This package is auto-updated.

Last update: 2024-04-07 14:18:18 UTC


README

Create random strings based on length and character list

Installation

1. Require the bundle with composer

./composer.phar require felds/code-generator-bundle dev-master

2. Enable the bundle

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Felds\CodeGeneratorBundle(),
    );
}