infernosquad / calculation-bundle
Sandbox bundle for learning purposes
v0.1.1
2015-12-19 15:10 UTC
Requires
- powder96/numbers.php: @dev
This package is not auto-updated.
Last update: 2024-11-09 19:50:59 UTC
README
Installation
Installation is a quick
- Download bundle using composer
- Enable the Bundle
Step 1: Download InfernosquadCalculationBundle using composer
Require the bundle with composer:
$ composer require infernosquad/calculation-bundle
Step 2: Enable the bundle
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Infernosquad\CalculationBundle\InfernosquadCalculationBundle(),
// ...
);
}