jiawei666 / my-di

更好的PHP DI容器

v0.0.1 2021-01-05 12:55 UTC

This package is auto-updated.

Last update: 2024-09-05 21:06:27 UTC


README

My-DI

介绍

更好的 PHP DI容器

安装

composer require jiawei666/my-di

开始使用

$container = new MyDI\Container(YourClass::class);  // Init container
$Object    = $container->get(); // Get object
// ...

// See unit test Amway for more usage