summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json38
1 files changed, 38 insertions, 0 deletions
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/"
+ }
+ }
+}