fix mbregex without mbstring failed check (fix #96)

This commit is contained in:
crazywhalecc 2023-07-27 18:46:37 +08:00 committed by Jerry Ma
parent b698ae2f50
commit 980da4ea0f
2 changed files with 8 additions and 2 deletions

View File

@ -165,8 +165,9 @@
},
"mbregex": {
"type": "builtin",
"lib-depends": [
"onig"
"arg-type": "custom",
"ext-depends": [
"mbstring"
]
},
"mbstring": {

View File

@ -14,4 +14,9 @@ class mbregex extends Extension
{
return 'mbstring';
}
public function getConfigureArg(): string
{
return '';
}
}