mirror of
https://github.com/danog/parallel.git
synced 2024-11-26 20:34:40 +01:00
50 lines
1.2 KiB
JSON
Executable File
50 lines
1.2 KiB
JSON
Executable File
{
|
|
"name": "icicleio/concurrent",
|
|
"description": "Concurrency component for Icicle.",
|
|
"keywords": [
|
|
"asynchronous",
|
|
"async",
|
|
"stream"
|
|
],
|
|
"homepage": "http://icicle.io",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@icicle.io"
|
|
},
|
|
{
|
|
"name": "Stephen Coakley",
|
|
"email": "me@stephencoakley.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"icicleio/icicle": "^0.9.1",
|
|
"icicleio/stream": "^0.5"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.1"
|
|
},
|
|
"suggest": {
|
|
"ext-pcntl": "Required for fork contexts",
|
|
"ext-pthreads": "Required for thread contexts",
|
|
"ext-sysvsem": "Required for fork synchronization",
|
|
"ext-sysvshm": "Required for fork contexts"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Icicle\\Concurrent\\": "src"
|
|
},
|
|
"files": [
|
|
"src/Worker/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Icicle\\Benchmarks\\Concurrent\\": "benchmarks",
|
|
"Icicle\\Examples\\Concurrent\\": "examples",
|
|
"Icicle\\Tests\\Concurrent\\": "tests"
|
|
}
|
|
}
|
|
}
|