infernosquad / calculation-bundle
Sandbox bundle for learning purposes
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/infernosquad/calculation-bundle
Requires
- powder96/numbers.php: @dev
This package is not auto-updated.
Last update: 2025-10-12 00:20:30 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(),
// ...
);
}