circle/utilitybundle

Contains utilities like queues or trees

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 7

Forks: 1

Open Issues: 0

Type:symfony-bundle

1.3.0 2015-06-19 09:43 UTC

This package is not auto-updated.

Last update: 2024-05-11 16:08:19 UTC


README

Contains Utilities such as queues and trees

##Full list:

  • Immutable container
  • Tree
  • Multi-child tree
  • Queue
  • Immutable Queue

#Installation

###Step 1: Download CiUtilityBundle using composer Add CiUtilityBundle by running the command:

php composer.phar require circle/utilitybundle

Composer will install the bundle to your project's vendor/circle directory.

###Step 2: Enable the bundle Enable the bundle in the symfony kernel

<?php
// PROJECTROOT/app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Circle\UtilityBundle\CircleUtilityBundle(),
    );
}

###Step 3: Have fun!