aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installer/plugin_installer.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-20 09:54:30 +0900
committernsfisis <nsfisis@gmail.com>2026-05-20 09:54:30 +0900
commit2914770fba6b3cc03a68fae493f60470a41962ec (patch)
tree90802d00854c302899af4d8efe0e824e62e5b9db /crates/shirabe/src/installer/plugin_installer.rs
parent44b443282644fc631ce722baf6d143f354dc62d3 (diff)
downloadphp-shirabe-2914770fba6b3cc03a68fae493f60470a41962ec.tar.gz
php-shirabe-2914770fba6b3cc03a68fae493f60470a41962ec.tar.zst
php-shirabe-2914770fba6b3cc03a68fae493f60470a41962ec.zip
refactor: re-export module items to shorten import paths
Diffstat (limited to 'crates/shirabe/src/installer/plugin_installer.rs')
-rw-r--r--crates/shirabe/src/installer/plugin_installer.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/crates/shirabe/src/installer/plugin_installer.rs b/crates/shirabe/src/installer/plugin_installer.rs
index 2ec8cb9..dff57d8 100644
--- a/crates/shirabe/src/installer/plugin_installer.rs
+++ b/crates/shirabe/src/installer/plugin_installer.rs
@@ -1,17 +1,17 @@
//! ref: composer/src/Composer/Installer/PluginInstaller.php
-use crate::installer::binary_installer::BinaryInstaller;
-use crate::installer::installer_interface::InstallerInterface;
-use crate::installer::library_installer::LibraryInstaller;
-use crate::io::io_interface::IOInterface;
-use crate::package::package_interface::PackageInterface;
+use crate::installer::BinaryInstaller;
+use crate::installer::InstallerInterface;
+use crate::installer::LibraryInstaller;
+use crate::io::IOInterface;
+use crate::package::PackageInterface;
use crate::partial_composer::PartialComposer;
-use crate::plugin::plugin_manager::PluginManager;
-use crate::repository::installed_repository_interface::InstalledRepositoryInterface;
-use crate::util::filesystem::Filesystem;
-use crate::util::platform::Platform;
+use crate::plugin::PluginManager;
+use crate::repository::InstalledRepositoryInterface;
+use crate::util::Filesystem;
+use crate::util::Platform;
use anyhow::Result;
-use shirabe_external_packages::react::promise::promise_interface::PromiseInterface;
+use shirabe_external_packages::react::promise::PromiseInterface;
use shirabe_php_shim::{LogicException, PhpMixed, UnexpectedValueException, empty};
#[derive(Debug)]