-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 883 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 883 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
32
{
"name": "functional-php/parallel",
"description": "Parallel implementation of some higher-order functions.",
"keywords": ["parallel", "pthreads", "threads", "higher-order functions", "map", "mapping", "fold", "folding", "filter", "filtering"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Gilles Crettenand",
"email": "gilles@crettenand.info"
}
],
"require": {
"php": ">=7.0.0"
},
"suggest": {
"krakjoe/pthreads-polyfill": "If you are not sure pthreads are available, this polyfill will allow to run the code sequentially without any chance to your code."
},
"require-dev": {
"atoum/atoum": "*"
},
"scripts": {
"test": "./vendor/bin/atoum --enable-branch-and-path-coverage"
},
"autoload": {
"psr-4": {
"FunctionalPHP\\Parallel\\": "./src"
},
"files": [
"src/functions.php"
]
}
}