An open API service indexing awesome lists of open source software.

https://github.com/sensorario/dependency-injection

automatic dependency injection
https://github.com/sensorario/dependency-injection

dependency-injection injection php

Last synced: about 1 year ago
JSON representation

automatic dependency injection

Awesome Lists containing this project

README

          

# Depencency-Injection

## Install

```
composer require sensorario/dependency-injection
```

## Usage

```php
use function Sensorario\DependencyInjection\injector;

$result = injector(ClassName::class, 'methodName');

echo $result;
```