aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/metadata_minifier/metadata_minifier.rs
blob: 8861936d0e8890e9e06981fc30fd8642d22e0a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct MetadataMinifier;

impl MetadataMinifier {
    pub fn expand(_minified_data: IndexMap<String, PhpMixed>) -> IndexMap<String, PhpMixed> {
        todo!()
    }

    pub fn minify(_packages: IndexMap<String, PhpMixed>) -> IndexMap<String, PhpMixed> {
        todo!()
    }
}