2017 © Pedro Peláez
 

library yaml-config-service-provider

Silex ServiceProvider for using YAML configuration files

image

deralex/yaml-config-service-provider

Silex ServiceProvider for using YAML configuration files

  • Tuesday, March 10, 2015
  • by DerAlex
  • Repository
  • 4 Watchers
  • 39 Stars
  • 178,910 Installations
  • PHP
  • 20 Dependents
  • 0 Suggesters
  • 28 Forks
  • 5 Open issues
  • 6 Versions
  • 4 % Grown

The README.md

YamlConfigServiceProvider

Service provider for Silex for using YAML configuration files., (*1)

Latest Stable Version Total Downloads SensioLabsInsight, (*2)

Installation

To use it add following line to your composer.json:, (*3)

"require": {
    ...
    "deralex/yaml-config-service-provider": "1.0.x-dev"
    ...
}

Usage

Include following line of code somewhere in your initial Silex file (index.php or whatever):, (*4)

$app->register(new DerAlex\Silex\YamlConfigServiceProvider(PATH_TO_CONFIG));

Now you have access to all of your configuration variables through $app['config']., (*5)

Example

config.yml:, (*6)

database:
    host: localhost
    user: myuser
    password: mypassword

index.php:, (*7)

<?php
    require_once __DIR__.'/../vendor/autoload.php';

    $app = new Silex\Application();

    // Considering the config.yml files is in the same directory as index.php
    $app->register(new DerAlex\Silex\YamlConfigServiceProvider('config.yml'));

    echo $app['config']['database']['host'];
    ...

License

Copyright (c) 2013 Alexander Kluth contact@alexanderkluth.com, (*8)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*9)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*10)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*11)

The Versions

10/03 2015

dev-master

9999999-dev

Silex ServiceProvider for using YAML configuration files

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Kluth

silex

10/03 2015

2.0.x-dev

2.0.9999999.9999999-dev

Silex ServiceProvider for using YAML configuration files

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Kluth

silex pimple

10/03 2015

1.0.x-dev

1.0.9999999.9999999-dev

Silex ServiceProvider for using YAML configuration files

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Kluth

silex

10/03 2015

dev-silex-2.0

dev-silex-2.0

Silex ServiceProvider for using YAML configuration files

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Kluth

silex

10/03 2015

1.0.1

1.0.1.0

Silex ServiceProvider for using YAML configuration files

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Kluth

silex

29/01 2014

1.0.0

1.0.0.0

Silex ServiceProvider for using YAML configuration files

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexander Kluth

silex