PHP code example of webimpress / zend-auradi-config

1. Go to this page and download the library: Download webimpress/zend-auradi-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/ */

    

webimpress / zend-auradi-config example snippets



use Zend\AuraDi\Config\Config;
use Zend\AuraDi\Config\ContainerFactory;

$factory = new ContainerFactory();

$container = $factory(
    new Config([
        'dependencies' => [
            'services'   => [],
            'invokables' => [],
            'factories'  => [],
            'aliases'    => [],
            'delegators' => [],
        ],
        // ... other configuration
    ])
);

> $config = $container->get('config');
> 



use Zend\AuraDi\Config\Config;
use Zend\AuraDi\Config\ContainerFactory;

$config  =