2015-07-09 08:33:34 +02:00
|
|
|
{
|
2016-08-23 23:47:40 +02:00
|
|
|
"name": "amphp/parallel",
|
|
|
|
"description": "Parallel processing component for Amp.",
|
2015-07-10 22:15:42 +02:00
|
|
|
"keywords": [
|
|
|
|
"asynchronous",
|
|
|
|
"async",
|
2016-07-20 16:23:50 +02:00
|
|
|
"concurrent",
|
|
|
|
"multi-threading",
|
|
|
|
"multi-processing"
|
2015-07-10 22:15:42 +02:00
|
|
|
],
|
2017-01-09 18:11:25 +01:00
|
|
|
"homepage": "https://github.com/amphp/parallel",
|
2015-09-15 04:27:16 +02:00
|
|
|
"license": "MIT",
|
2015-07-09 08:33:34 +02:00
|
|
|
"authors": [
|
2015-07-10 22:15:42 +02:00
|
|
|
{
|
|
|
|
"name": "Aaron Piotrowski",
|
2016-07-20 16:23:50 +02:00
|
|
|
"email": "aaron@trowski.com"
|
2015-07-10 22:15:42 +02:00
|
|
|
},
|
2015-07-09 08:33:34 +02:00
|
|
|
{
|
|
|
|
"name": "Stephen Coakley",
|
2015-07-10 22:15:42 +02:00
|
|
|
"email": "me@stephencoakley.com"
|
2015-07-09 08:33:34 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2017-01-16 19:56:49 +01:00
|
|
|
"amphp/amp": "^2.0",
|
|
|
|
"amphp/process": "dev-amp_v2 as 0.2"
|
2015-07-10 22:15:42 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2016-08-31 01:27:14 +02:00
|
|
|
"amphp/stream": "dev-master as 0.1",
|
2016-01-23 06:44:23 +01:00
|
|
|
"phpunit/phpunit": "^5.0"
|
2015-07-09 08:33:34 +02:00
|
|
|
},
|
2016-01-23 06:44:23 +01:00
|
|
|
"minimum-stability": "dev",
|
2015-07-09 08:33:34 +02:00
|
|
|
"suggest": {
|
|
|
|
"ext-pcntl": "Required for fork contexts",
|
|
|
|
"ext-pthreads": "Required for thread contexts",
|
2015-07-10 09:24:37 +02:00
|
|
|
"ext-sysvsem": "Required for fork synchronization",
|
|
|
|
"ext-sysvshm": "Required for fork contexts"
|
2015-07-09 08:33:34 +02:00
|
|
|
},
|
2016-01-23 07:06:22 +01:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2016-08-24 16:22:26 +02:00
|
|
|
"dev-master": "0.1.x-dev"
|
2016-01-23 07:06:22 +01:00
|
|
|
}
|
|
|
|
},
|
2015-07-09 08:33:34 +02:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2016-08-23 23:47:40 +02:00
|
|
|
"Amp\\Parallel\\": "lib"
|
2015-08-28 07:18:50 +02:00
|
|
|
},
|
|
|
|
"files": [
|
2016-07-20 16:23:50 +02:00
|
|
|
"lib/Worker/functions.php"
|
2015-08-28 07:18:50 +02:00
|
|
|
]
|
2015-07-09 08:33:34 +02:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2016-09-02 01:10:52 +02:00
|
|
|
"Amp\\Parallel\\Example\\": "example",
|
2016-08-23 23:47:40 +02:00
|
|
|
"Amp\\Parallel\\Test\\": "test"
|
2015-07-09 08:33:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|