This repository was archived by the owner on Feb 17, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.42 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.42 KB
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
{
"name": "react-parallel/psr-11-container-proxy",
"description": "\ud83d\udef0\ud83d\ude80\ud83d\udef8 PSR-11 container proxy",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^7.4",
"psr/container": "^1.0",
"react-parallel/object-proxy": "dev-one-shared-channel"
},
"require-dev": {
"monolog/monolog": "^2.1",
"psr/log": "^1.1",
"wyrihaximus/async-test-utilities": "^2.3",
"yuloh/container": "^1.0"
},
"config": {
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"extra": {
"react-parallel": {
"object-proxy": {
"interfaces-to-proxy": [
"Psr\\Container\\ContainerInterface"
]
}
}
},
"autoload": {
"psr-4": {
"ReactParallel\\Psr11ContainerProxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReactParallel\\Tests\\Psr11ContainerProxy\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}