aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-24 01:38:43 +0900
committernsfisis <nsfisis@gmail.com>2026-06-24 01:38:43 +0900
commitda068098e7e1d5ef1d068a834a78545217f72394 (patch)
tree316df6a73337a37f46440b507d4ad3eebf7baa59 /crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
parenta7c90a277235fa825f9cfa137aa281da3c0e9acd (diff)
downloadphp-shirabe-da068098e7e1d5ef1d068a834a78545217f72394.tar.gz
php-shirabe-da068098e7e1d5ef1d068a834a78545217f72394.tar.zst
php-shirabe-da068098e7e1d5ef1d068a834a78545217f72394.zip
refactor(semver): re-export shirabe-semver at crate root, drop composer::semver stubs
Flatten shirabe-semver's modules into glob re-exports at the crate root and route all consumers through the short paths. Remove the duplicate composer::semver stubs from shirabe-external-packages in favor of the shirabe-semver types. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs')
-rw-r--r--crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs b/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
deleted file mode 100644
index b113f71..0000000
--- a/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-//! ref: composer/vendor/composer/semver/src/CompilingMatcher.php
-
-use shirabe_semver::constraint::AnyConstraint;
-
-#[derive(Debug)]
-pub struct CompilingMatcher;
-
-impl CompilingMatcher {
- pub fn r#match(_constraint: &AnyConstraint, _package: &dyn std::any::Any) -> bool {
- todo!()
- }
-
- pub fn matches(_constraint: &AnyConstraint, _operator: i64, _version: &str) -> bool {
- todo!()
- }
-
- pub fn match_(_constraint: &AnyConstraint, _operator: i64, _version: &str) -> bool {
- todo!()
- }
-
- pub fn clear() {
- todo!()
- }
-}