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
71 lines (71 loc) · 1.95 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-parallel/psr-11-container-proxy",
"type": "composer-plugin",
"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",
"composer-plugin-api": "^2",
"illuminate/collections": "^8.18",
"psr/container": "^1.0",
"react-parallel/object-proxy": "dev-master",
"wyrihaximus/string-get-in": "^1.0"
},
"require-dev": {
"monolog/monolog": "^2.1",
"psr/log": "^1.1",
"wyrihaximus/async-test-utilities": "^3.4.19",
"yuloh/container": "^1.0"
},
"config": {
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"extra": {
"class": "ReactParallel\\Psr11ContainerProxy\\Composer\\Installer",
"react-parallel": {
"object-proxy": {
"interfaces-to-proxy": [
"Psr\\Container\\ContainerInterface"
]
},
"psr-11-container-proxy": {
"custom-overrides": [
"react-parallel.psr-11-container-proxy.dummy"
]
}
}
},
"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"
],
"pre-autoload-dump": [
"ReactParallel\\Psr11ContainerProxy\\Composer\\Installer::locateCustomOverrides"
]
}
}