diff --git a/config/source.json b/config/source.json index 30557c95..4b5da3db 100644 --- a/config/source.json +++ b/config/source.json @@ -748,13 +748,18 @@ } }, "swoole": { - "type": "ghtar", "path": "php-src/ext/swoole", - "repo": "swoole/swoole-src", - "prefer-stable": true, + "type": "git", + "rev": "master", + "url": "https://github.com/swoole/swoole-src.git", "license": { "type": "file", "path": "LICENSE" + }, + "alt": { + "type": "ghtar", + "repo": "swoole/swoole-src", + "prefer-stable": true } }, "swow": { diff --git a/src/globals/ext-tests/swoole.php b/src/globals/ext-tests/swoole.php index 9e5752f0..dd539ad4 100644 --- a/src/globals/ext-tests/swoole.php +++ b/src/globals/ext-tests/swoole.php @@ -6,7 +6,6 @@ assert(function_exists('swoole_cpu_num')); assert(function_exists('swoole_string')); assert(class_exists('Swoole\Coroutine')); assert(class_exists('Swoole\Coroutine\Http2\Client')); -assert(class_exists('Swoole\Coroutine\Redis')); assert(class_exists('Swoole\Coroutine\WaitGroup')); assert(class_exists('Swoole\Http2\Request')); assert(constant('SWOOLE_VERSION'));