Laminas DI Container in its simplest form

Code
<?php

/**
 * the simple DI only works without
 * config when there are dependencies
 * to classes via type hint
 */
class Foo
{
    public 
$prop 'foo';
}

class 
Bar
{
    private 
$foo;
    
    
/**
     * DI container recognizes Foo class dependency
     * and creates Foo object automatically
     */
    
public function __construct(Foo $foo)
    {
        
$this->foo $foo;
    }
    
    public function 
getFooProp()
    {
        return 
$this->foo->prop;
    }
}

use 
Laminas\Di\Di;

$di = new Di();

$bar $di->get('Bar');
echo 
$bar->getFooProp();
Result
foo
Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8