Files
static-php-cli/src/SPC/builder/extension/mongodb.php
2023-04-29 18:59:47 +08:00

18 lines
299 B
PHP

<?php
declare(strict_types=1);
namespace SPC\builder\extension;
use SPC\builder\Extension;
use SPC\util\CustomExt;
#[CustomExt('mongodb')]
class mongodb extends Extension
{
public function getUnixConfigureArg(): string
{
return '--enable-mongodb --without-mongodb-sasl';
}
}