From 11d0dfefc9c7e7d23ef5d13e9f55b06967e41ef8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Jul 2016 18:34:02 +0200 Subject: php-aura-di: 2.2.4 (New package) --- composer.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..51aa2ec --- /dev/null +++ b/composer.json @@ -0,0 +1,38 @@ +{ + "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.", + "keywords": [ + "container", + "dependency injection", + "di", + "di container", + "dependency injection container" + ], + "homepage": "https://github.com/auraphp/Aura.Di", + "license": "BSD-2-Clause", + "authors": [ + { + "name": "Aura.Di Contributors", + "homepage": "https://github.com/auraphp/Aura.Di/contributors" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-4": { + "Aura\\Di\\": "src/" + } + }, + "extra": { + "aura": { + "type": "library" + } + }, + "autoload-dev": { + "psr-4": { + "Aura\\Di\\": "tests/" + } + } +} -- cgit