tarioch / pheal-bundle
为您的Symfony2项目添加Pheal支持。
0.1.3
2015-06-13 09:55 UTC
Requires
- php: >=5.4.4
- 3rdpartyeve/phealng: >=2.1
- jms/di-extra-bundle: >=1.4
- symfony/framework-bundle: >=2.3
Requires (Dev)
- mockery/mockery: dev-master@dev
- phpunit/phpunit: 3.7.*
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]