tarioch/pheal-bundle

为您的Symfony2项目添加Pheal支持。

安装: 813

依赖项: 1

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

开放问题: 1

类型:symfony-bundle

0.1.3 2015-06-13 09:55 UTC

This package is not auto-updated.

Last update: 2024-09-28 15:34:06 UTC


README

版权所有(C) 2013 - 2015 by Patrick Ruckstuhl。保留所有权利。

Pheal Bundle是用于Pheal - EVE Online API库的Symfony包。

许可证

Pheal Bundle采用MIT风格许可证,有关更多信息,请参阅LICENSE.txt。

安装

首先,您需要将 tarioch/pheal-bundle 添加到 composer.json

{
   "require": {
        "tarioch/pheal-bundle": "dev-master"
    }
}

您还必须将 TariochPhealBundle 添加到您的 AppKernel.php

// app/AppKernel.php
//...
class AppKernel extends Kernel
{
    //...
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Tarioch\PhealBundle\TariochPhealBundle()
        );
        //...

        return $bundles;
    }
    //...
}

您还必须在 config.yml 中启用对该包的注释解析。

// app/config/config.yml
// ...
jms_di_extra:
    locations:
        all_bundles: false
        bundles: [TariochPhealBundle]