From 9dffc8d5f11c9f2de31083211262bfca358d6b32 Mon Sep 17 00:00:00 2001 From: Yassine Doghri Date: Tue, 26 Aug 2025 08:10:36 +0000 Subject: [PATCH] ci(php-icons): fix local icon sets path --- php-icons.php | 8 ++++---- {app/Resources => resources}/icons/custom/_index.php | 0 {app/Resources => resources}/icons/custom/repeat-off.svg | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename {app/Resources => resources}/icons/custom/_index.php (100%) rename {app/Resources => resources}/icons/custom/repeat-off.svg (100%) diff --git a/php-icons.php b/php-icons.php index 1c6b6915..afcb4588 100644 --- a/php-icons.php +++ b/php-icons.php @@ -7,10 +7,10 @@ use PHPIcons\Config\PHPIconsConfig; return PHPIconsConfig::configure() ->withPaths([__DIR__ . '/app', __DIR__ . '/themes', __DIR__ . '/resources']) ->withLocalIconSets([ - 'funding' => __DIR__ . '/app/Resources/icons/funding', - 'podcasting' => __DIR__ . '/app/Resources/icons/podcasting', - 'social' => __DIR__ . '/app/Resources/icons/social', - 'custom' => __DIR__ . '/app/Resources/icons/custom', + 'funding' => __DIR__ . '/resources/icons/funding', + 'podcasting' => __DIR__ . '/resources/icons/podcasting', + 'social' => __DIR__ . '/resources/icons/social', + 'custom' => __DIR__ . '/resources/icons/custom', ]) ->withDefaultIconPerSet([ 'funding' => 'funding:default', diff --git a/app/Resources/icons/custom/_index.php b/resources/icons/custom/_index.php similarity index 100% rename from app/Resources/icons/custom/_index.php rename to resources/icons/custom/_index.php diff --git a/app/Resources/icons/custom/repeat-off.svg b/resources/icons/custom/repeat-off.svg similarity index 100% rename from app/Resources/icons/custom/repeat-off.svg rename to resources/icons/custom/repeat-off.svg