2017 © Pedro Peláez
 

library dependency-injection

Gephart DependencyInjection Component

image

gephart/dependency-injection

Gephart DependencyInjection Component

  • Sunday, April 1, 2018
  • by MichalKatuscak
  • Repository
  • 1 Watchers
  • 2 Stars
  • 473 Installations
  • PHP
  • 6 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 2 % Grown

The README.md

Gephart Dependecy Injection

php, (*1)

Dependencies

  • PHP >= 7.4
  • psr/container == 2.0.2

Instalation

composer require gephart/dependency-injection

Using

class A
{
    public function hello(string $world): string
    {
        return "hello " . $world;
    }
}

class B
{
    private $a;

    public function __construct(A $a)
    {
        $this->a = $a;
    }

    public function render()
    {
        return $this->a->hello("world");
    }
}

$container = new \Gephart\DependencyInjection\Container();
$b = $container->get(B::class);
$b->render(); // hello world

The Versions

08/10 2017

0.5

0.5.0.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

 

The Development Requires

05/09 2017

0.4

0.4.0.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

 

29/03 2017

0.2.3

0.2.3.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

 

29/03 2017

0.2.2

0.2.2.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

 

19/03 2017

0.2.1

0.2.1.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

 

20/02 2017

0.2.0

0.2.0.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

 

04/02 2017

v0.1

0.1.0.0 https://github.com/gephart/dependency-injection

Gephart DependencyInjection Component

  Sources   Download

MIT

The Requires

  • php >=7.0