-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
67 lines (67 loc) · 1.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "amphp/injector",
"homepage": "https://github.com/amphp/injector",
"description": "A dependency injector for bootstrapping object-oriented PHP applications.",
"keywords": [
"dependency injection",
"dic",
"ioc"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@gmail.com",
"homepage": "https://github.com/rdlowrey"
},
{
"name": "Levi Morrison",
"email": "levim@php.net",
"homepage": "http://morrisonlevi.github.com/"
},
{
"name": "Dan Ackroyd",
"email": "Danack@basereality.com",
"homepage": "http://www.basereality.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"autoload": {
"psr-4": {
"Amp\\Injector\\": "src"
},
"files": [
"src/functions.php",
"src/Internal/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Injector\\": "test",
"Amp\\Injector\\Benchmarks\\": "benchmarks"
},
"files": [
"test/fixtures.php"
]
},
"require": {
"php": ">=8.0",
"kelunik/fiber-local": "^1-dev",
"psr/container": "^1.1 | ^2"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"amphp/php-cs-fixer-config": "dev-master",
"ocramius/proxy-manager": "^2.11.1",
"monolog/monolog": "^2.2",
"phpbench/phpbench": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}