schemgr/psr11realize

Practice by Schemchuk Gregory 11-904

dev-master 2022-06-13 13:40 UTC

This package is not auto-updated.

Last update: 2024-04-16 21:18:34 UTC


README

Simple PSR-11 container with interesting feature - it can store dependencies localy, so you can continue executing your application after stopping it at any time

Little usage example:

$container = new Container([
  'test_key' => 'test_value'
]);

$value = $container->get('test_key');