@@ -27,6 +27,7 @@ class CliSource implements SourceInterface
2727 public const OPTION_EXPOSE_DB_QUOTE_PORT = 'expose-db-quote-port ' ;
2828 public const OPTION_EXPOSE_DB_SALES_PORT = 'expose-db-sales-port ' ;
2929 public const OPTION_REDIS = 'redis ' ;
30+ public const OPTION_VALKEY = 'valkey ' ;
3031 public const OPTION_ES = 'es ' ;
3132 public const OPTION_OS = 'os ' ;
3233 public const OPTION_RABBIT_MQ = 'rmq ' ;
@@ -37,6 +38,8 @@ class CliSource implements SourceInterface
3738 public const OPTION_INSTALLATION_TYPE = 'installation-type ' ;
3839 public const OPTION_NO_ES = 'no-es ' ;
3940 public const OPTION_NO_OS = 'no-os ' ;
41+ public const OPTION_NO_REDIS = 'no-redis ' ;
42+ public const OPTION_NO_DB = 'no-db ' ;
4043 public const OPTION_NO_MAILHOG = 'no-mailhog ' ;
4144 public const OPTION_NO_TLS = 'no-tls ' ;
4245
@@ -124,6 +127,9 @@ class CliSource implements SourceInterface
124127 self ::OPTION_REDIS => [
125128 self ::SERVICES_REDIS => true
126129 ],
130+ self ::OPTION_VALKEY => [
131+ self ::SERVICES_VALKEY => true
132+ ],
127133 self ::OPTION_ES => [
128134 self ::SERVICES_ES => true
129135 ],
@@ -146,6 +152,8 @@ class CliSource implements SourceInterface
146152 private static $ disableOptionsMap = [
147153 self ::OPTION_NO_ES => self ::SERVICES_ES ,
148154 self ::OPTION_NO_OS => self ::SERVICES_OS ,
155+ self ::OPTION_NO_REDIS => self ::SERVICES_REDIS ,
156+ self ::OPTION_NO_DB => self ::SERVICES_DB ,
149157 self ::OPTION_NO_MAILHOG => self ::SERVICES_MAILHOG ,
150158 self ::OPTION_NO_TLS => self ::SERVICES_TLS ,
151159 ];
0 commit comments