Skip to content

A super fast Dependency Injection Container for PHP 7

Notifications You must be signed in to change notification settings

thedrawingroom/DiMaria

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DiMaria Dependency Injector

Build Status Scrutinizer Code Quality Code Coverage Build Status Code Climate SensioLabsInsight

DiMaria is a Dependency Injection Container for PHP 7+ with no dependencies. It's written to be extremely fast and lightweight.

Installation

Fetch DiMaria with composer via packagist. Add it with

composer require dangerousdan/dimaria

Usage

DiMaria should work out of the box. Just call get() with the class name you wish to create.

$di = new DD\DiMaria;
$object = $di->get('ClassName');

DiMaria implements the PSR7 Container interface.

DiMaria can:

  • Automatically fetch type-hinted dependencies in classes
  • Set and override parameters and create aliases
  • Set preferences for interfaces or classes
  • Configure classes to return shared or new instances
  • Support variadic parameters
  • Configure Setter injection

For more info, see the docs

DiMaria

About

A super fast Dependency Injection Container for PHP 7

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%