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
Requires
- php: >=5.3.2
- doctrine/common: >=2.2
- symfony/http-kernel: >=2.1
This package is not auto-updated.
Last update: 2024-10-26 18:43:58 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!