strident/phimple

Simple dependency injection container, inspired by Pimple.

2.0.3 2015-02-10 15:51 UTC

This package is not auto-updated.

Last update: 2024-04-08 23:55:37 UTC


README

#Phimple Build Status Coverage Code Climate

Phimple is an extremely lightweight dependency injection container, heavily inspired by Pimple.

##Installation

Phimple is available as a Composer package. It can be included in your project by running the following command:

$ composer require strident/phimple ~2.0

##Usage

Phimple is easy to get going with (just like Pimple really):

use Phimple\Container;

$container = new Container();

Phimple differs from Pimple internally in some ways, and also in it's API. The API change was the main reason I decided to develop Phimple. There are 2 concepts; services and parameters.