infernosquad/calculation-bundle

用于学习目的的沙盒包

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

This package is not auto-updated.

Last update: 2024-09-14 19:03:54 UTC


README

安装

安装过程快速

  1. 使用composer下载包
  2. 启用包

第1步:使用composer下载InfernosquadCalculationBundle

使用composer要求包

$ composer require infernosquad/calculation-bundle

第2步:启用包

在内核中启用包

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Infernosquad\CalculationBundle\InfernosquadCalculationBundle(),
        // ...
    );
}