forked from aventri/multiprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 847 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 847 Bytes
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
{
"name": "wandell/multiprocessing",
"description": "Multiprocessing library using streams or unix sockets for inter-process communication.",
"type": "library",
"homepage": "https://richwandell.github.io/multiprocessing/",
"autoload": {
"psr-4": {
"wandell\\Multiprocessing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"wandell\\Multiprocessing\\test\\": "test/",
"wandell\\Multiprocessing\\Example\\": "example/"
}
},
"require-dev": {
"szymach/c-pchart": "^3.0",
"phpunit/phpunit": "6.5.14",
"doctrine/instantiator": "1.0.5",
"zetacomponents/system-information": "*"
},
"require": {
"php": ">=5.3"
},
"suggest": {
"ext-sockets": "Required for use on windows",
"ext-curl": "Curl is used to run some examples",
"ext-json": "Json is used in examples"
}
}