tarioch / pheal-bundle
Adds Pheal support to your Symfony2 project.
Installs: 815
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 1
Type:symfony-bundle
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: 2025-03-01 17:28:17 UTC
README
Copyright (C) 2013 - 2015 by Patrick Ruckstuhl All rights reserved.
Symfony bundle for Pheal - EVE Online API Library
LICENSE
Pheal Bundle is licensed under a MIT style license, see LICENSE.txt for further information
INSTALLATION
First you need to add tarioch/pheal-bundle
to composer.json
:
{ "require": { "tarioch/pheal-bundle": "dev-master" } }
You also have to add TariochPhealBundle
to your AppKernel.php
:
// app/AppKernel.php //... class AppKernel extends Kernel { //... public function registerBundles() { $bundles = array( ... new Tarioch\PhealBundle\TariochPhealBundle() ); //... return $bundles; } //... }
And you have to enable the annotation parsing for the bundle in your config.yml
:
// app/config/config.yml // ... jms_di_extra: locations: all_bundles: false bundles: [TariochPhealBundle]