parallel-functions/composer.json
2022-02-03 20:28:16 +01:00

46 lines
1.0 KiB
JSON

{
"name": "amphp/parallel-functions",
"description": "Parallel processing made simple.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"autoload": {
"psr-4": {
"Amp\\ParallelFunctions\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\ParallelFunctions\\Test\\": "test"
}
},
"require": {
"php": ">=7.4",
"amphp/amp": "^2.0.3",
"amphp/parallel": "^1.4",
"amphp/serialization": "^1.0",
"laravel/serializable-closure": "^1.0"
},
"require-dev": {
"amphp/php-cs-fixer-config": "v2.x-dev",
"amphp/phpunit-util": "^2.0",
"phpunit/phpunit": "^9.5.11"
},
"config": {
"platform": {
"php": "7.4"
}
},
"scripts": {
"fix-syntax": "php vendor/bin/php-cs-fixer --diff -v fix"
}
}