PHPackages                             kohkimakimoto/application-config-service-provider - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. kohkimakimoto/application-config-service-provider

ActiveLibrary

kohkimakimoto/application-config-service-provider
=================================================

This is a Silex ServiceProvider to use yaml configuration files.

239PHP

Since Jul 1Pushed 12y ago1 watchersCompare

[ Source](https://github.com/kohkimakimoto/ApplicationConfigServiceProvider)[ Packagist](https://packagist.org/packages/kohkimakimoto/application-config-service-provider)[ RSS](/packages/kohkimakimoto-application-config-service-provider/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

ApplicationConfigServiceProvider
================================

[](#applicationconfigserviceprovider)

[![Build Status](https://camo.githubusercontent.com/a1087b0247baa54b6e8b4220be1cb40db004086f3f2bef5e245badce06d77438/68747470733a2f2f7472617669732d63692e6f72672f6b6f686b696d616b696d6f746f2f4170706c69636174696f6e436f6e6669675365727669636550726f76696465722e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/kohkimakimoto/ApplicationConfigServiceProvider)

This is a [Silex](http://silex.sensiolabs.org/) [ServiceProvider](http://silex.sensiolabs.org/doc/providers.html) to use yaml configuration files.

Synopsis
--------

[](#synopsis)

```
# config.yml
param: AAA
param2: BBB
param3:
    param3-1: aaa
    param3-2: aaa
```

```
// something.php
use Silex\Application;
use Kohkimakimoto\Silex\Provider\ApplicationConfigServiceProvider;

$app = new Application();
$app->register(new ApplicationConfigServiceProvider(), array(
      'config.path' => __DIR__.'config.yml'
));

$app['config']->get('param');    # AAA
$app['config']->get('param4');   # null
$app['config']->get('param4', "default");   # default

$app['config']->get('param3');   # array('param3-1' => 'aaa', 'param3-2' => 'aaa')

$app['config']->get('param3/param3-1', null, '/');   # aaa
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/232e612dbf32e70978372a2249e28dd037f75eadafc547913375708571c65f9a?d=identicon)[kohkimakimoto](/maintainers/kohkimakimoto)

---

Top Contributors

[![kohkimakimoto](https://avatars.githubusercontent.com/u/761462?v=4)](https://github.com/kohkimakimoto "kohkimakimoto (23 commits)")

### Embed Badge

![Health badge](/badges/kohkimakimoto-application-config-service-provider/health.svg)

```
[![Health](https://phpackages.com/badges/kohkimakimoto-application-config-service-provider/health.svg)](https://phpackages.com/packages/kohkimakimoto-application-config-service-provider)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
