aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installed_versions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/installed_versions.rs')
-rw-r--r--crates/shirabe/src/installed_versions.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/shirabe/src/installed_versions.rs b/crates/shirabe/src/installed_versions.rs
index 0e22e06..8b287f1 100644
--- a/crates/shirabe/src/installed_versions.rs
+++ b/crates/shirabe/src/installed_versions.rs
@@ -1,7 +1,6 @@
//! ref: composer/src/Composer/InstalledVersions.php
-use std::sync::Mutex;
-
+use crate::autoload::ClassLoader;
use anyhow::Result;
use indexmap::IndexMap;
use shirabe_php_shim::{
@@ -9,8 +8,7 @@ use shirabe_php_shim::{
implode, is_file, method_exists, php_dir, require_php_file, strtr_array, substr,
};
use shirabe_semver::VersionParser;
-
-use crate::autoload::ClassLoader;
+use std::sync::Mutex;
/// This class is copied in every Composer installed project and available to all
///