felds/code-generator-bundle

Generate random strings.

Installs: 20

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/felds/code-generator-bundle

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

This package is auto-updated.

Last update: 2025-10-07 17:29:50 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(),
    );
}