2015-07-09 08:33:34 +02:00
|
|
|
{
|
|
|
|
"name": "icicleio/concurrent",
|
2015-07-10 22:15:42 +02:00
|
|
|
"description": "Concurrency component for Icicle.",
|
|
|
|
"keywords": [
|
|
|
|
"asynchronous",
|
|
|
|
"async",
|
|
|
|
"stream"
|
|
|
|
],
|
|
|
|
"homepage": "http://icicle.io",
|
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",
|
|
|
|
"email": "aaron@icicle.io"
|
|
|
|
},
|
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": {
|
2015-09-18 22:07:30 +02:00
|
|
|
"icicleio/icicle": "^0.8.3",
|
2015-09-10 06:29:41 +02:00
|
|
|
"icicleio/socket": "^0.3.1"
|
2015-07-10 22:15:42 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2015-07-16 10:02:58 +02:00
|
|
|
"phpunit/phpunit": "^4.6",
|
|
|
|
"athletic/athletic": "^0.1.8"
|
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
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Icicle\\Concurrent\\": "src"
|
2015-08-28 07:18:50 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"src/Worker/functions.php"
|
|
|
|
]
|
2015-07-09 08:33:34 +02:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2015-07-16 10:02:58 +02:00
|
|
|
"Icicle\\Benchmarks\\Concurrent\\": "benchmarks",
|
2015-09-28 05:46:57 +02:00
|
|
|
"Icicle\\Examples\\Concurrent\\": "examples",
|
2015-07-09 08:33:34 +02:00
|
|
|
"Icicle\\Tests\\Concurrent\\": "tests"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|