apsonex/laravelfont is a Laravel wrapper around the core apsonex/font package, allowing you to easily manage fonts from supported providers like Bunny Fonts.
- List, search, and retrieve fonts by key, family, or type.
- Support for Bunny Fonts.
- Laravel auto-discovery with service provider and facade.
- Clean, chainable API.
- Ready for testing using Pest PHP.
composer require apsonex/laravelfontuse Apsonex\LaravelFont\Facades\LaravelFont;
$manager = LaravelFont::bunny();Or via service container:
$manager = app(\Apsonex\LaravelFont\LaravelFontManager::class)->bunny();$manager->bunny();$manager->list(limit: 20, page: 1);$manager->search(keyword: 'abo', limit: 20, page: 1);$manager->findByKey('abel');$manager->findByKeys(['abel', 'aboreto'], limit: 10);$manager->findByFamily('Abel', limit: 10);$manager->findByFamilies(['Abel', 'Aboreto'], limit: 10);$manager->findByType('sans-serif', limit: -1); // -1 to get allEach font is returned as a FontDTO with the following structure:
FontDTO {
string $key // "abel"
string $provider // "bunny"
string $category // "sans-serif"
string $family // "Abel"
string $urlString // "abel:400,400i"
}Run the test suite using:
vendor/bin/pestIf you're working on this package, install dependencies and test it via:
composer install
composer testThe MIT License (MIT). Please see License File for more information.