2017-12-13 22:58:26 +01:00
|
|
|
{
|
2017-12-13 23:36:35 +01:00
|
|
|
"name": "amphp/parallel-functions",
|
|
|
|
"description": "Parallel processing made simple.",
|
2017-12-13 22:58:26 +01:00
|
|
|
"type": "library",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Niklas Keller",
|
|
|
|
"email": "me@kelunik.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-12-13 23:36:35 +01:00
|
|
|
"Amp\\ParallelFunctions\\": "src"
|
2017-12-13 22:58:26 +01:00
|
|
|
},
|
|
|
|
"files": [
|
2017-12-13 23:36:35 +01:00
|
|
|
"src/functions.php"
|
2017-12-13 22:58:26 +01:00
|
|
|
]
|
|
|
|
},
|
2017-12-16 10:35:40 +01:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Amp\\ParallelFunctions\\Test\\": "test"
|
|
|
|
}
|
|
|
|
},
|
2017-12-13 22:58:26 +01:00
|
|
|
"require": {
|
|
|
|
"php": ">=7",
|
2019-01-08 01:14:31 +01:00
|
|
|
"amphp/parallel": "^1.1",
|
2017-12-17 19:31:34 +01:00
|
|
|
"amphp/amp": "^2.0.3",
|
2017-12-14 17:33:41 +01:00
|
|
|
"opis/closure": "^3.0.7"
|
2017-12-13 22:58:26 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-12-13 23:48:03 +01:00
|
|
|
"amphp/phpunit-util": "^1.0",
|
|
|
|
"friendsofphp/php-cs-fixer": "^2.9",
|
|
|
|
"phpunit/phpunit": "^6.5"
|
2017-12-13 23:50:45 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"platform": {
|
|
|
|
"php": "7.0.0"
|
|
|
|
}
|
2017-12-16 10:35:40 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"fix-syntax": "php vendor/bin/php-cs-fixer --diff -v fix"
|
2017-12-13 22:58:26 +01:00
|
|
|
}
|
|
|
|
}
|