-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 KB
/
composer.json
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
39
40
41
42
43
44
45
46
{
"name": "idealogica/indi",
"description": "The simplest [in]dependency injection container for PHP7, compatible with PSR-11.",
"keywords": ["ioc", "di", "container", "dependency", "injection", "injector", "locator", "service", "php7", "container-interop", "psr-11"],
"type": "library",
"homepage": "https://github.com/idealogica/indi",
"license": "MIT",
"authors":
[
{
"name": "Konstatin Nikiforov",
"email": "[email protected]",
"homepage": "http://konstantin.idealogica.me"
}
],
"require":
{
"php": ">=7.0.0",
"psr/container": "~1.0.0"
},
"require-dev":
{
"idealogica/debug": "~1.0.0",
"phpunit/phpunit": "~7.5.20"
},
"autoload":
{
"psr-4":
{
"Idealogica\\InDI\\": "src/"
}
},
"autoload-dev":
{
"classmap":
[
"tests/dummies/DefinitionProvider.php",
"tests/dummies/BadDefinitionProvider.php",
"tests/dummies/ValueProvider.php"
],
"files":
[
"tests/dummies.php"
]
}
}