commit 14b53be08128205b8d709bf6f7010a9fc900186f Author: coderstephen Date: Thu Jul 9 01:33:34 2015 -0500 Add composer file diff --git a/composer.json b/composer.json new file mode 100755 index 0000000..5439a04 --- /dev/null +++ b/composer.json @@ -0,0 +1,33 @@ +{ + "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-sem": "Required for fork synchronization" + }, + "autoload": { + "psr-4": { + "Icicle\\Concurrent\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "Icicle\\Tests\\Concurrent\\": "tests" + } + } +}