From b452f7f32a806c6142cad13b45d8b5904bfebb49 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Fri, 18 Apr 2025 14:38:42 +0800 Subject: [PATCH] Add default shared target --- src/SPC/store/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SPC/store/Config.php b/src/SPC/store/Config.php index ad837dbc..16f925c6 100644 --- a/src/SPC/store/Config.php +++ b/src/SPC/store/Config.php @@ -137,7 +137,7 @@ class Config if (!isset(self::$ext[$name])) { throw new WrongUsageException('ext [' . $name . '] is not supported yet'); } - return self::$ext[$name]['target'] ?? ['static']; + return self::$ext[$name]['target'] ?? ['static', 'shared']; } /**