PHP code example of vaibhavpandeyvpz / pimple-config
1. Go to this page and download the library: Download vaibhavpandeyvpz/pimple-config library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vaibhavpandeyvpz / pimple-config example snippets
$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);