Strident/Phimple

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "strident/phimple",
    "type": "library",
    "description": "Simple dependency injection container, inspired by Pimple.",
    "keywords": [ "dic" ],
    "license": "MIT",
    "homepage": "https://github.com/Strident/Phimple",
    "authors": [
        {
            "name": "Elliot Wright",
            "email": "elliot@elliotwright.co"
        }
    ],
    "require": {
        "php": ">=5.4"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.5",
        "codeclimate/php-test-reporter": "~0.1"
    },
    "autoload": {
        "psr-0": { "Phimple\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "Phimple\\Tests\\": "tests/" }
    },
    "minimum-stability": "dev"
}