-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
42 lines (42 loc) · 956 Bytes
/
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
{
"name": "rg/injektor",
"description": "Dependency Injection container inspired by google-guice",
"keywords": [
"dependency",
"injection"
],
"homepage": "http://github.com/researchgate/injektor",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Bastian Hofmann",
"email": "[email protected]",
"homepage": "http://www.bastianhofmann.de"
}
],
"require": {
"php": ">=8.1",
"doctrine/annotations": "^1.12|^2.0.0",
"laminas/laminas-code": "^4.13",
"psr/log": "^1.0.0"
},
"require-dev": {
"friendsofphp/proxy-manager-lts": "^1.0",
"phpunit/phpunit": "^9.0.0",
"roave/better-reflection": "^5.0.0"
},
"suggest": {
"ocramius/proxy-manager": "For lazy loading"
},
"autoload": {
"psr-0": {
"rg\\injektor": "src/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}