Last modified 3 years ago
inphect: Dependency Injection Container for PHP 5
inphect is a small, well-designed and heavily extendeable Dependency Injection Container for PHP 5. inphect depends on PHP 5.3.
Basic usage
<?php use inphect\Container; $container = new Container(); $container->registerService('DbInterface', 'ConcreteDbClass'); $db = $container->findService('DbInterface');
