1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
parallel/composer.json
2015-07-10 02:24:37 -05:00

35 lines
942 B
JSON
Executable File

{
"name": "icicleio/concurrent",
"description": "Asynchronous threads and forks for running concurrent tasks",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Stephen Coakley",
"email": "me@stephencoakley.com",
"homepage": "http://stephencoakley.com"
}
],
"require": {
"icicleio/icicle": "@stable",
"icicleio/socket": "^0.1.0",
"jeremeamia/superclosure": "^2.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"
}
},
"autoload-dev": {
"psr-4": {
"Icicle\\Tests\\Concurrent\\": "tests"
}
}
}