PHPackages                             suzunone/hibana - 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. suzunone/hibana

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

suzunone/hibana
===============

Transform your Laravel project into static websites.

01PHP

Since Aug 17Pushed 1y ago1 watchersCompare

[ Source](https://github.com/suzunone/hibana)[ Packagist](https://packagist.org/packages/suzunone/hibana)[ RSS](/packages/suzunone-hibana/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Hibana Static Site Generator
============================

[](#hibana-static-site-generator)

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

[](#installation)

Require this package with composer using the following command:

```
composer require --dev suzunone/hibana dev-main
```

Note

If you encounter version conflicts with doctrine/dbal, please try: `composer require --dev suzunone/hibana --with-all-dependencies`

This package makes use of [Laravels package auto-discovery mechanism](https://medium.com/@taylorotwell/package-auto-discovery-in-laravel-5-5-ea9e3ab20518), which means if you don't install dev dependencies in production, it also won't be loaded.

If for some reason you want manually control this:

- add the package to the `extra.laravel.dont-discover` key in `composer.json`, e.g. ```
    "extra": {
      "laravel": {
        "dont-discover": [
          "suzunone/hibana"
        ]
      }
    }
    ```

- Add the following class to the providers array in bootstrap/providers.php

```
Suzunone\Hibana\Providers\HibanaServiceProvider::class
```

If you want to manually load it only in non-production environments, instead you can add this to your AppServiceProvider with the register() method:

```
if ($this->app->isLocal()) {
    $this->app->register(\Suzunone\Hibana\Providers\HibanaServiceProvider::class);
}
```

> Note: Avoid caching the configuration in your development environment, it may cause issues after installing this package; respectively clear the cache beforehand via `php artisan cache:clear` if you encounter problems when running the commands

- Publish the config file to change implementations (ie. change the storage disk from the default) or set defaults for hibana.

```
php artisan vendor:publish --provider="Suzunone\Hibana\Providers\HibanaServiceProvider" --tag=config
```

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance28

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity17

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/630015fa1a1a301f4fdebfc315ac1e2b6ad90ae681972e0d067c6887a7ed292d?d=identicon)[suzunone](/maintainers/suzunone)

---

Top Contributors

[![suzunone](https://avatars.githubusercontent.com/u/7632752?v=4)](https://github.com/suzunone "suzunone (5 commits)")

### Embed Badge

![Health badge](/badges/suzunone-hibana/health.svg)

```
[![Health](https://phpackages.com/badges/suzunone-hibana/health.svg)](https://phpackages.com/packages/suzunone-hibana)
```

###  Alternatives

[spatie/unit-conversions

Perform unit conversions in PHP

363.5k](/packages/spatie-unit-conversions)

PHPackages © 2026

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