aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/configurable_repository_interface.rs
blob: f6d36ba076901a8822ec03cb8f22a3a5c39db7b9 (plain)
1
2
3
4
5
6
7
8
//! ref: composer/src/Composer/Repository/ConfigurableRepositoryInterface.php

use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;

pub trait ConfigurableRepositoryInterface {
    fn get_repo_config(&self) -> IndexMap<String, PhpMixed>;
}