schemgr/psr11realize

由 Schemchuk Gregory 11-904 实践

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

This package is not auto-updated.

Last update: 2024-09-17 23:18:19 UTC


README

简单的 PSR-11 容器,具有有趣的功能 - 它可以本地存储依赖项,因此您可以在任何时候停止它后继续执行您的应用程序

简单使用示例

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

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