1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00

Update composer and dir name for Amp

This commit is contained in:
Aaron Piotrowski 2016-07-20 09:23:50 -05:00
parent 74e9e76fe6
commit 54810f1d67
61 changed files with 11 additions and 9 deletions

View File

@ -1,17 +1,19 @@
{ {
"name": "icicleio/concurrent", "name": "amphp/concurrent",
"description": "Concurrency component for Icicle.", "description": "Concurrency component for Amp.",
"keywords": [ "keywords": [
"asynchronous", "asynchronous",
"async", "async",
"stream" "concurrent",
"multi-threading",
"multi-processing"
], ],
"homepage": "http://icicle.io", "homepage": "https://github.com/amphp/concurrent",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
"name": "Aaron Piotrowski", "name": "Aaron Piotrowski",
"email": "aaron@icicle.io" "email": "aaron@trowski.com"
}, },
{ {
"name": "Stephen Coakley", "name": "Stephen Coakley",
@ -19,10 +21,10 @@
} }
], ],
"require": { "require": {
"icicleio/icicle": "^2.0", "amphp/amp": "^2.0"
"icicleio/stream": "^2.0"
}, },
"require-dev": { "require-dev": {
"amphp/loop": "dev-master",
"phpunit/phpunit": "^5.0" "phpunit/phpunit": "^5.0"
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
@ -39,10 +41,10 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Icicle\\Concurrent\\": "src" "Icicle\\Concurrent\\": "lib"
}, },
"files": [ "files": [
"src/Worker/functions.php" "lib/Worker/functions.php"
] ]
}, },
"autoload-dev": { "autoload-dev": {