blob: a45d18eee79f287235e1b040aba5d9c8313c8267 (
plain)
1
2
3
4
5
6
7
8
9
|
//! ref: composer/src/Composer/Repository/PlatformRepository.php
pub struct PlatformRepository;
impl PlatformRepository {
pub fn is_platform_package(req: &str) -> bool {
todo!()
}
}
|