PHPackages                             artisan-build/verbs-flux - 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. artisan-build/verbs-flux

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

artisan-build/verbs-flux
========================

Turn your Verbs events into Flux forms.

191[3 issues](https://github.com/artisan-build/verbs-flux/issues)PHPCI failing

Since Oct 13Pushed 7mo ago2 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Verbs Flux
==========

[](#verbs-flux)

This package is being replaced by one in which Flux is optional.

Turn your [Verbs](https://verbs.thunk.dev) events into [Flux](https://fluxui.dev/) forms.

Usage
-----

[](#usage)

First, install the package: `composer install artisan-build/verbs-flux`

Next, add some attributes to your event to indicate what type of fields should be used:

```
namespace App\Events;

use App\States\UserBalance;
+ use ArtisanBuild\VerbsFlux\Attributes\EventForm;
+ use ArtisanBuild\VerbsFlux\Attributes\EventInput;
+ use ArtisanBuild\VerbsFlux\Enums\InputTypes;
use Thunk\Verbs\Attributes\Autodiscovery\StateId;
use Thunk\Verbs\Event;

+ #[EventForm()]
class FundsAdded extends Event
{
    #[StateId(UserBalance::class)]
    public int $userId;

+     #[EventInput(
+         type: InputTypes::Number,
+         label: 'Amount',
+         rules: ['required', 'numeric', 'min:0.01'],
+     )]
    public float $amount;

+     #[EventInput(
+         type: InputTypes::Text,
+         label: 'Notes',
+     )]
    public string $notes;
```

Finally, add a livewire component and indicate which event it should use:

```

```

Tip: you can include this inside a modal like this:

```

    Add Transaction

```

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance25

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 Bus Factor1

Top contributor holds 82.4% 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/63312522f1920cf5b3c34ea474511a484162b36166a33ae4b9fde6c65ab2c2fc?d=identicon)[ProjektGopher](/maintainers/ProjektGopher)

---

Top Contributors

[![edgrosvenor](https://avatars.githubusercontent.com/u/1053395?v=4)](https://github.com/edgrosvenor "edgrosvenor (14 commits)")[![ProjektGopher](https://avatars.githubusercontent.com/u/1688608?v=4)](https://github.com/ProjektGopher "ProjektGopher (3 commits)")

### Embed Badge

![Health badge](/badges/artisan-build-verbs-flux/health.svg)

```
[![Health](https://phpackages.com/badges/artisan-build-verbs-flux/health.svg)](https://phpackages.com/packages/artisan-build-verbs-flux)
```

###  Alternatives

[proloser/cakephp-csv

5223.6k](/packages/proloser-cakephp-csv)[bobmotor/magento-2-gulp

Magento 2 gulp configuration

4228.8k](/packages/bobmotor-magento-2-gulp)[shetabit/token-builder

Laravel Token Builder

236.7k](/packages/shetabit-token-builder)[tarfin-labs/event-machine

Event-driven state machines for Laravel with event sourcing, type-safe context, and full audit trail.

188.5k](/packages/tarfin-labs-event-machine)

PHPackages © 2026

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