1. Go to this page and download the library: Download ryanl/flexer 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/ */
ryanl / flexer example snippets
$container = new \Flexer\Container();
$container = new \Flexer\Container([
$id => $definition
]);
$container = new \Flexer\Container();
$container->add($id, $definition)
$container = new \Flexer\Container();
$container->add(\Test\Sample\NormalClass::class, $definition)
$definition = fn() => new \Test\Sample\NormalClass();
$container->add($id, $definition);
function getNormalClassInstance(): \Test\Sample\NormalClass
{
return new \Test\Sample\NormalClass();
}
$container->add($id, 'getNormalClassInstance');