aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-class-map-generator
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-class-map-generator')
-rw-r--r--crates/shirabe-class-map-generator/Cargo.toml1
-rw-r--r--crates/shirabe-class-map-generator/src/class_map_generator.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/crates/shirabe-class-map-generator/Cargo.toml b/crates/shirabe-class-map-generator/Cargo.toml
index 69889ef7..9143487d 100644
--- a/crates/shirabe-class-map-generator/Cargo.toml
+++ b/crates/shirabe-class-map-generator/Cargo.toml
@@ -7,6 +7,7 @@ edition.workspace = true
shirabe-external-packages.workspace = true
shirabe-pcre.workspace = true
shirabe-php-shim.workspace = true
+shirabe-symfony-finder.workspace = true
anyhow.workspace = true
indexmap.workspace = true
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)]