flexix/configuration-bundle

Simple configuration object

Installs: 51

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/flexix/configuration-bundle

dev-master 2017-06-01 06:46 UTC

This package is not auto-updated.

Last update: 2025-10-08 06:03:10 UTC


README

by Mariusz Piela mariusz.piela@tmsolution.pl

Installation

To install the bundle, add:

//composer require

"flexix/configurationBundle": "dev-master"

to your project's composer.json file. Later, enable your bundle in the app's kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Flexix\ConfigurationBundle\FlexixConfigurationBundle()
    );
}