//! ref: composer/src/Composer/Repository/Vcs/VcsDriverInterface.php
use crate::config::Config;
use crate::io::io_interface::IOInterface;
use chrono::{DateTime, Utc};
use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;
pub trait VcsDriverInterface: std::fmt::Debug {
fn initialize(&mut self) -> anyhow::Result<()>;
fn get_composer_information(
&self,
identifier: &str,
) -> anyhow::Result