tarioch/pheal-bundle

Adds Pheal support to your Symfony2 project.

Installs: 813

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 1

Open Issues: 1

Type:symfony-bundle

0.1.3 2015-06-13 09:55 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:09:38 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]