schemgr/psr11realize

Practice by Schemchuk Gregory 11-904

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

pkg:composer/schemgr/psr11realize

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

This package is not auto-updated.

Last update: 2025-10-01 04:16:32 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');