vaibhavpandeyvpz/pimple-config

为Pimple提供加载简单PHP文件配置的服务提供者。

2.0 2017-03-26 02:22 UTC

This package is auto-updated.

Last update: 2024-09-07 00:17:25 UTC


README

Pimple提供加载简单PHP文件的服务提供者。

Latest Version Scrutinizer Code Quality SensioLabsInsight Total Downloads Software License

安装

composer require vaibhavpandeyvpz/pimple-config

使用

<?php

$container = new Pimple\Container();

/**
 * @desc You can add as many as config service providers.
 */
$container->register(new Pimple\Config\ConfigServiceProvider(), [
    'config.files' => [
        __DIR__ . '/database.php',
        __DIR__ . '/security.php',
    ]
]);

$container['config.hydrate']($container);

许可

请参阅LICENSE.md文件。