moaqz/container

There is no license information available for the latest version (v0.1.0) of this package.

A simple dependency injection container

v0.1.0 2024-07-16 21:07 UTC

This package is auto-updated.

Last update: 2024-11-16 21:55:34 UTC


README

A simple dependency injection container written in PHP.

Usage Example

use Moaqz\Container\Container;

$container = new Container();
$userController = $container->get(UserController::class);

Warning

This is a simple implementation meant for educational purposes and is not suitable for production environments.