From 770157c94e56fa647fb57db2f49a7b1cf60d8610 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Fri, 16 Jun 2017 13:31:28 +0200 Subject: [PATCH] Require amphp/parallel, use stable libs --- composer.json | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index 2a082c4..47f4a07 100644 --- a/composer.json +++ b/composer.json @@ -29,18 +29,14 @@ ], "require": { "amphp/amp": "^2", - "amphp/byte-stream": "^1" + "amphp/byte-stream": "^1", + "amphp/parallel": "^0.1" }, - "minimum-stability": "dev", "require-dev": { "amphp/phpunit-util": "^1", - "amphp/parallel": "^1", "phpunit/phpunit": "^6", "friendsofphp/php-cs-fixer": "^2.3" }, - "suggest": { - "amphp/parallel": "Provides async file access without the eio or uv extension." - }, "autoload": { "psr-4": { "Amp\\File\\": "lib" @@ -51,11 +47,5 @@ "psr-4": { "Amp\\File\\Test\\": "test" } - }, - "extra": { - "branch-alias": { - "dev-master": "0.1.0-dev", - "dev-amp_v2": "0.2.0-dev" - } } }