2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2019-12-05 18:04:27 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct PhpConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub format: &'a str,
|
2019-12-05 18:04:27 +00:00
|
|
|
pub disabled: bool,
|
2021-02-21 18:52:19 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2019-12-05 18:04:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for PhpConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2019-12-05 18:04:27 +00:00
|
|
|
PhpConfig {
|
2020-07-07 22:45:32 +00:00
|
|
|
symbol: "🐘 ",
|
|
|
|
style: "147 bold",
|
2021-01-22 17:03:18 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2019-12-05 18:04:27 +00:00
|
|
|
disabled: false,
|
2021-02-21 18:52:19 +00:00
|
|
|
detect_extensions: vec!["php"],
|
|
|
|
detect_files: vec!["composer.json", ".php-version"],
|
|
|
|
detect_folders: vec![],
|
2019-12-05 18:04:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|