php-pimple icon indicating copy to clipboard operation
php-pimple copied to clipboard

A small PHP 5.3 dependency injection container

php-pimple Build Status

A small PHP 5.3 dependency injection container (PHP extension)

php-pimple is a port of the Pimple library written in PHP.

Creating a container is a matter of instating the Pimple class:

$container = new Pimple();

As many other dependency injection containers, Pimple is able to manage two different kind of data: services and parameters.