From e38467624d0ab17942324c0fde3b4010e1eb508f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 15 Dec 2016 07:32:55 +0100 Subject: php-aura-di: 3.2.0 --- composer.json | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 51aa2ec..37ddd36 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "aura/di", "type": "library", - "description": "Provides a dependency injection container system with native support for constructor- and setter-based injection, lazy-loading of services, and inheritable configuration of setters and constructor params.", + "description": "A serializable dependency injection container with constructor and setter injection, interface and trait awareness, configuration inheritance, and much more.", "keywords": [ "container", "dependency injection", @@ -10,7 +10,7 @@ "dependency injection container" ], "homepage": "https://github.com/auraphp/Aura.Di", - "license": "BSD-2-Clause", + "license": "MIT", "authors": [ { "name": "Aura.Di Contributors", @@ -18,21 +18,24 @@ } ], "require": { - "php": ">=5.3.0" + "php": ">=5.5.0", + "container-interop/container-interop": "~1.0" }, "autoload": { "psr-4": { "Aura\\Di\\": "src/" } }, - "extra": { - "aura": { - "type": "library" - } + "require-dev": { + "mouf/picotainer": "~1.0", + "acclimate/container": "~1.0" }, "autoload-dev": { "psr-4": { "Aura\\Di\\": "tests/" } + }, + "provide": { + "container-interop/container-interop-implementation": "^1.0" } } -- cgit