forked from amphp/parallel-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 996 Bytes
/
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
{
"name": "amphp/parallel-functions",
"description": "Parallel processing made simple.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niklas Keller",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Amp\\ParallelFunctions\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\ParallelFunctions\\Test\\": "test"
}
},
"require": {
"php": ">=7",
"amphp/parallel": "^1.1",
"amphp/amp": "^2.0.3",
"opis/closure": "^3.0.7"
},
"require-dev": {
"amphp/phpunit-util": "^1.0",
"friendsofphp/php-cs-fixer": "^2.9",
"phpunit/phpunit": "^6.5"
},
"config": {
"platform": {
"php": "7.0.0"
}
},
"scripts": {
"fix-syntax": "php vendor/bin/php-cs-fixer --diff -v fix"
}
}