aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-class-map-generator/src
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-09 11:17:08 +0900
committernsfisis <nsfisis@gmail.com>2026-08-09 11:17:08 +0900
commite3e8806aec771e482899ed3470e920f7b291fa95 (patch)
tree786fac56e96978220131ffeaff807b732a377bfe /crates/shirabe-class-map-generator/src
parent64e02ef08f0f479937fc194f79eac997327a79dd (diff)
downloadphp-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.tar.gz
php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.tar.zst
php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.zip
refactor(symfony-finder): extract symfony/finder into the shirabe-symfony-finder crate
Move `Symfony\Component\Finder` out of shirabe-external-packages and into its own crate, so the path is `shirabe_symfony_finder::Finder` instead of `shirabe_external_packages::symfony::finder::Finder`. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-class-map-generator/src')
-rw-r--r--crates/shirabe-class-map-generator/src/class_map_generator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe-class-map-generator/src/class_map_generator.rs b/crates/shirabe-class-map-generator/src/class_map_generator.rs
index 4a71b28d..7262fd8a 100644
--- a/crates/shirabe-class-map-generator/src/class_map_generator.rs
+++ b/crates/shirabe-class-map-generator/src/class_map_generator.rs
@@ -4,13 +4,13 @@ use crate::class_map::ClassMap;
use crate::file_list::FileList;
use crate::php_file_parser::PhpFileParser;
use indexmap::indexmap;
-use shirabe_external_packages::symfony::finder::Finder;
use shirabe_pcre::{CaptureKey, Preg};
use shirabe_php_shim::{
InvalidArgumentException, LogicException, PATHINFO_EXTENSION, PHP_INT_MAX, RuntimeException,
explode, getcwd, implode, is_dir, is_file, pathinfo, php_regex, preg_quote, realpath,
str_replace, str_starts_with, stream_get_wrappers, strlen, strpos, strrpos, strtr, substr,
};
+use shirabe_symfony_finder::Finder;
use std::path::PathBuf;
#[derive(Debug)]