-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathcomposer.json
53 lines (53 loc) · 1.4 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
47
48
49
50
51
52
53
{
"name": "aura/di",
"type": "library",
"description": "A serializable dependency injection container with constructor and setter injection, interface and trait awareness, configuration inheritance, and much more.",
"keywords": [
"container",
"dependency injection",
"di",
"di container",
"dependency injection container"
],
"homepage": "https://github.com/auraphp/Aura.Di",
"license": "MIT",
"authors": [
{
"name": "Aura.Di Contributors",
"homepage": "https://github.com/auraphp/Aura.Di/contributors"
}
],
"bin": ["bin/auradi"],
"require": {
"php": "^8.0",
"psr/container": "^2.0.2"
},
"autoload": {
"psr-4": {
"Aura\\Di\\": "src/"
}
},
"require-dev": {
"producer/producer": "^2.3",
"phpunit/phpunit": "^9.0 || ^10.0",
"phpstan/phpstan": "^1.11.1",
"composer/class-map-generator": "^1.1"
},
"suggest": {
"composer/class-map-generator": "Required for scanning classes and annotations"
},
"autoload-dev": {
"psr-4": {
"Aura\\Di\\": "tests/"
}
},
"provide": {
"psr/container-implementation": "^1.0"
},
"scripts": {
"test": [
"./vendor/bin/phpunit",
"./vendor/bin/phpstan analyse -l 5 src"
]
}
}