ci(php-icons): fix local icon sets path

This commit is contained in:
Yassine Doghri 2025-08-26 08:10:36 +00:00
parent 8ec42c33ff
commit 9dffc8d5f1
3 changed files with 4 additions and 4 deletions

View File

@ -7,10 +7,10 @@ use PHPIcons\Config\PHPIconsConfig;
return PHPIconsConfig::configure() return PHPIconsConfig::configure()
->withPaths([__DIR__ . '/app', __DIR__ . '/themes', __DIR__ . '/resources']) ->withPaths([__DIR__ . '/app', __DIR__ . '/themes', __DIR__ . '/resources'])
->withLocalIconSets([ ->withLocalIconSets([
'funding' => __DIR__ . '/app/Resources/icons/funding', 'funding' => __DIR__ . '/resources/icons/funding',
'podcasting' => __DIR__ . '/app/Resources/icons/podcasting', 'podcasting' => __DIR__ . '/resources/icons/podcasting',
'social' => __DIR__ . '/app/Resources/icons/social', 'social' => __DIR__ . '/resources/icons/social',
'custom' => __DIR__ . '/app/Resources/icons/custom', 'custom' => __DIR__ . '/resources/icons/custom',
]) ])
->withDefaultIconPerSet([ ->withDefaultIconPerSet([
'funding' => 'funding:default', 'funding' => 'funding:default',

View File

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 253 B