PHPackages                             ryangjchandler/laravel-bunny-fonts - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. ryangjchandler/laravel-bunny-fonts

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ryangjchandler/laravel-bunny-fonts
==================================

Manage Bunny Fonts programatically in your Laravel projects.

v2.1.1(1mo ago)161.0k↓50%1[1 PRs](https://github.com/ryangjchandler/laravel-bunny-fonts/pulls)MITPHPPHP ^8.3CI passing

Since May 2Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/ryangjchandler/laravel-bunny-fonts)[ Packagist](https://packagist.org/packages/ryangjchandler/laravel-bunny-fonts)[ Docs](https://github.com/ryangjchandler/laravel-bunny-fonts)[ GitHub Sponsors](https://github.com/ryangjchandler)[ RSS](/packages/ryangjchandler-laravel-bunny-fonts/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (28)Versions (8)Used By (0)

Manage Bunny Fonts programatically in your Laravel projects.
============================================================

[](#manage-bunny-fonts-programatically-in-your-laravel-projects)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ed3d5144d10fac0f6138c82a1ef6d2ba9e58f3938faf3801e7538b895b4b9fb1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7279616e676a6368616e646c65722f6c61726176656c2d62756e6e792d666f6e74732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ryangjchandler/laravel-bunny-fonts)[![GitHub Tests Action Status](https://camo.githubusercontent.com/81c9b419e563065f0e17dab2d3251b12955f4364ecac849970302b7c3c6b6c5f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7279616e676a6368616e646c65722f6c61726176656c2d62756e6e792d666f6e74732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/ryangjchandler/laravel-bunny-fonts/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/9c2dc036a328d492207b4b3634c105c0eaae1e5eef59189624a9f5c15fb8b060/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7279616e676a6368616e646c65722f6c61726176656c2d62756e6e792d666f6e74732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/ryangjchandler/laravel-bunny-fonts/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/9fb28b53fedb5a5de44214c5db3e4abc330d5d1b97769ca950e10e384a993dc3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7279616e676a6368616e646c65722f6c61726176656c2d62756e6e792d666f6e74732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ryangjchandler/laravel-bunny-fonts)

This package provides a small set of utilities for managing Bunny Fonts programatically.

Installation
------------

[](#installation)

You can install the package via Composer:

```
composer require ryangjchandler/laravel-bunny-fonts
```

Usage
-----

[](#usage)

Inside of your `AppServiceProvider::boot()` method, use the `BunnyFonts` class to register font families and variants.

```
use RyanChandler\BunnyFonts\Facades\BunnyFonts;
use RyanChandler\BunnyFonts\FontFamily;

public function boot()
{
    BunnyFonts::add(FontFamily::AbhayaLibre, weights: [400, 500, 600])
        ->add(FontFamily::FiraCode, weights: [
            400
        ]);
}
```

> This package provides a `FontFamily` enum that contains all fonts available on Bunny!
>
> If you want to preview a font, click through to the enum and use the handy link in the comment above the case.

Inside of your Blade templates, use the `` component or `@bunnyFonts()` directive to render the necessary HTML tags and load your fonts.

### Sets

[](#sets)

Out of the box this package provides a `default` set of fonts. Calling `add()` directly on the `BunnyFonts` class will register fonts under the `default` set.

If your site uses different fonts in different places, it's still possible to register them using this package by creating a custom "set".

```
public function boot()
{
    BunnyFonts::set('shop')
        ->add(FontFamily::Inter, [400, 500, 700]);
}
```

Then when you use the Blade component or directive, you can provide the set you wish to render.

```

@bunnyFonts('shop')
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Ryan Chandler](https://github.com/ryangjchandler)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

50

—

FairBetter than 96% of packages

Maintenance90

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 65.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~228 days

Total

4

Last Release

54d ago

Major Versions

v1.0.0 → v2.0.02025-09-16

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.0.0PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/568d485d441c691b0358b9091254a6a671fef8f76b73f28af1180ad568d142b2?d=identicon)[ryangjchandler](/maintainers/ryangjchandler)

---

Top Contributors

[![ryangjchandler](https://avatars.githubusercontent.com/u/41837763?v=4)](https://github.com/ryangjchandler "ryangjchandler (23 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")

---

Tags

laravelryan chandlerlaravel-bunny-fonts

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/ryangjchandler-laravel-bunny-fonts/health.svg)

```
[![Health](https://phpackages.com/badges/ryangjchandler-laravel-bunny-fonts/health.svg)](https://phpackages.com/packages/ryangjchandler-laravel-bunny-fonts)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
