/** * The hidden folder name for storing WP Now related files. */ export declare const WP_NOW_HIDDEN_FOLDER = ".wp-now"; /** * The file name for the SQLite plugin name. */ export declare const SQLITE_FILENAME = "sqlite-database-integration-main"; /** * The URL for downloading the "SQLite database integration" WordPress Plugin. */ export declare const SQLITE_URL = "https://github.com/WordPress/sqlite-database-integration/archive/refs/heads/main.zip"; /** * The default starting port for running the WP Now server. */ export declare const DEFAULT_PORT = 8881; /** * The default PHP version to use when running the WP Now server. */ export declare const DEFAULT_PHP_VERSION = "8.2"; /** * The default WordPress version to use when running the WP Now server. */ export declare const DEFAULT_WORDPRESS_VERSION = "latest"; /** * The URL for downloading the "wp-cli" WordPress cli. */ export declare const WP_CLI_URL = "https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar";