aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installer
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-09 11:21:45 +0900
committernsfisis <nsfisis@gmail.com>2026-08-09 11:21:45 +0900
commit548ec1ffb232da4411ae8890080bcfd63300cda0 (patch)
tree2860e71a0fe1b72a959f90d15ab543c9a72bae1d /crates/shirabe/src/installer
parenta8a4b54b90e6433cf4a25a88a4765243f831ebef (diff)
downloadphp-shirabe-548ec1ffb232da4411ae8890080bcfd63300cda0.tar.gz
php-shirabe-548ec1ffb232da4411ae8890080bcfd63300cda0.tar.zst
php-shirabe-548ec1ffb232da4411ae8890080bcfd63300cda0.zip
refactor(seld-signal): extract seld/signal into the shirabe-seld-signal crate
Move `Seld\Signal` out of shirabe-external-packages and into its own crate, so the path is `shirabe_seld_signal::SignalHandler` instead of `shirabe_external_packages::seld::signal::SignalHandler`. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/installer')
-rw-r--r--crates/shirabe/src/installer/installation_manager.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/installer/installation_manager.rs b/crates/shirabe/src/installer/installation_manager.rs
index 454dfa86..24960d28 100644
--- a/crates/shirabe/src/installer/installation_manager.rs
+++ b/crates/shirabe/src/installer/installation_manager.rs
@@ -21,11 +21,11 @@ use crate::util::Platform;
use crate::util::r#loop::Loop;
use crate::util::sync_executor;
use indexmap::IndexMap;
-use shirabe_external_packages::seld::signal::SignalHandler;
use shirabe_php_shim::{
InvalidArgumentException, PhpMixed, array_splice, array_unshift, http_build_query, json_encode,
str_contains, str_replace, strpos, strtolower,
};
+use shirabe_seld_signal::SignalHandler;
/// Package operation manager.
#[derive(Debug)]