1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-30 04:39:01 +01:00
parallel/composer.json
Aaron Piotrowski 4146c3fc09 Initial commit
2015-07-10 15:15:42 -05:00

40 lines
865 B
JSON

{
"name": "icicleio/concurrent",
"description": "Concurrency component for Icicle.",
"keywords": [
"asynchronous",
"async",
"stream"
],
"homepage": "http://icicle.io",
"license": "Apache-2.0",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@icicle.io"
},
{
"name": "Stephen Coakley",
"email": "me@stephencoakley.com"
}
],
"require": {
"icicleio/icicle": "^0.7",
"icicleio/stream": "^0.1",
"icicleio/socket": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "^4.6"
},
"autoload": {
"psr-4": {
"Icicle\\Concurrent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Icicle\\Tests\\Concurrent\\": "tests"
}
}
}