summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 51aa2ecd894a21fc358ff67f811c3e9ab2794c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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/"
        }
    }
}