1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 14:01:14 +01:00
parallel/composer.json

66 lines
1.5 KiB
JSON
Raw Normal View History

2015-07-09 01:33:34 -05:00
{
2016-08-23 16:47:40 -05:00
"name": "amphp/parallel",
"description": "Parallel processing component for Amp.",
2015-07-10 15:15:42 -05:00
"keywords": [
"asynchronous",
"async",
2016-07-20 09:23:50 -05:00
"concurrent",
"multi-threading",
"multi-processing"
2015-07-10 15:15:42 -05:00
],
"homepage": "https://github.com/amphp/parallel",
2015-09-14 21:27:16 -05:00
"license": "MIT",
2015-07-09 01:33:34 -05:00
"authors": [
2015-07-10 15:15:42 -05:00
{
"name": "Aaron Piotrowski",
2016-07-20 09:23:50 -05:00
"email": "aaron@trowski.com"
2015-07-10 15:15:42 -05:00
},
2015-07-09 01:33:34 -05:00
{
"name": "Stephen Coakley",
2015-07-10 15:15:42 -05:00
"email": "me@stephencoakley.com"
2015-07-09 01:33:34 -05:00
}
],
"require": {
2017-06-15 23:46:15 -05:00
"amphp/amp": "^2",
2017-12-08 10:31:00 -06:00
"amphp/byte-stream": "^1.2",
2017-06-15 23:46:15 -05:00
"amphp/parser": "^1",
2017-11-29 21:14:24 -06:00
"amphp/process": "^0.2 || ^0.3",
2017-12-08 10:31:00 -06:00
"amphp/sync": "^1.0.1"
2015-07-10 15:15:42 -05:00
},
"require-dev": {
2017-06-15 23:46:15 -05:00
"phpunit/phpunit": "^6",
"amphp/phpunit-util": "^1",
2018-10-07 09:50:45 -05:00
"amphp/php-cs-fixer-config": "dev-master"
2015-07-09 01:33:34 -05:00
},
"suggest": {
"ext-pthreads": "Required for thread contexts"
2016-01-23 00:06:22 -06:00
},
2015-07-09 01:33:34 -05:00
"autoload": {
"psr-4": {
2016-08-23 16:47:40 -05:00
"Amp\\Parallel\\": "lib"
},
"files": [
2016-07-20 09:23:50 -05:00
"lib/Worker/functions.php"
]
2015-07-09 01:33:34 -05:00
},
"autoload-dev": {
"psr-4": {
"Amp\\Parallel\\Example\\": "examples",
2016-08-23 16:47:40 -05:00
"Amp\\Parallel\\Test\\": "test"
2015-07-09 01:33:34 -05:00
}
2017-12-02 13:54:56 +01:00
},
"config": {
"platform": {
"php": "7.0.0"
}
2018-10-07 09:50:45 -05:00
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff"
2015-07-09 01:33:34 -05:00
}
}