castopod/php-icons.php
Yassine Doghri 94cea0ce91 feat: set min PHP version to 8.4
update CI4 to 4.6.0 + use codeigniter-vite and vite-plugin-codeigniter to load assets
2025-03-14 12:54:51 +00:00

21 lines
635 B
PHP
Raw Permalink Blame History

<?php
declare(strict_types=1);
use PHPIcons\Config\PHPIconsConfig;
return PHPIconsConfig::configure()
->withPaths([__DIR__ . '/app', __DIR__ . '/themes', __DIR__ . '/resources'])
->withLocalIconSets([
'funding' => __DIR__ . '/resources/icons/funding',
'podcasting' => __DIR__ . '/resources/icons/podcasting',
'social' => __DIR__ . '/resources/icons/social',
])
->withDefaultIconPerSet([
'funding' => 'funding:default',
'podcasting' => 'podcasting:default',
'social' => 'social:default',
])
->withDefaultPrefix('ri')
->withPlaceholder('<27>');