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

v0.1.1 2015-12-19 15:10 UTC

This package is not auto-updated.

Last update: 2025-10-12 00:20:30 UTC


README

Installation

Installation is a quick

  1. Download bundle using composer
  2. 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(),
        // ...
    );
}