PHPackages                             michael4d45/filament-system-info-widget - 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. michael4d45/filament-system-info-widget

ActiveLibrary

michael4d45/filament-system-info-widget
=======================================

A Filament widget for displaying system information including package versions and deployment details

v2.2.0(1mo ago)0459↓50%MITPHPPHP ^8.1

Since Jan 9Pushed 1mo agoCompare

[ Source](https://github.com/Michael4d45/Filament-system-info-widget)[ Packagist](https://packagist.org/packages/michael4d45/filament-system-info-widget)[ RSS](/packages/michael4d45-filament-system-info-widget/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (9)Versions (14)Used By (0)

Filament System Info Widget
===========================

[](#filament-system-info-widget)

A Filament widget for displaying system information including package versions, PHP version, and deployment details with update notifications.

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

[](#installation)

Install the package via Composer:

```
composer require michael4d45/filament-system-info-widget
```

Basic Usage
-----------

[](#basic-usage)

Add the widget to your Filament dashboard:

```
use Michael4d45\FilamentSystemInfo\Widgets\SystemInfoWidget;

class Dashboard extends \Filament\Pages\Dashboard
{
    public function getWidgets(): array
    {
        return [
            SystemInfoWidget::class,
        ];
    }
}
```

Configuration
-------------

[](#configuration)

### Using Configuration Methods

[](#using-configuration-methods)

You can configure the widget using fluent methods:

```
SystemInfoWidget::make()
    ->heading('My System Info')
    ->packages([
        [
            'name' => 'laravel/framework',
            'displayName' => 'Laravel',
            'icon' => 'heroicon-o-cpu-chip',
            'type' => 'packagist',
        ],
        [
            'name' => 'php',
            'displayName' => 'PHP',
            'icon' => 'heroicon-o-code-bracket',
            'type' => 'php',
        ],
    ])
    ->showDeploymentInfo(true)
    ->pollingInterval('30s')
```

### Using the Configure Method

[](#using-the-configure-method)

For more advanced configuration:

```
SystemInfoWidget::make()
    ->configure([
        'packages' => [
            [
                'name' => 'laravel/framework',
                'displayName' => 'Laravel Framework',
                'icon' => 'heroicon-o-cpu-chip',
                'type' => 'packagist',
            ],
            [
                'name' => 'filament/filament',
                'displayName' => 'Filament Admin',
                'icon' => 'heroicon-o-squares-2x2',
                'type' => 'packagist',
            ],
        ],
        'heading' => 'System Overview',
        'pollingInterval' => '30s',
        'showDeploymentInfo' => true,
        'releaseInfoPath' => '.release-info',
    ])
```

### Publishing Configuration

[](#publishing-configuration)

You can publish the configuration file to customize defaults:

```
php artisan vendor:publish --tag=filament-system-info-config
```

Then edit `config/filament-system-info.php`:

```
return [
    'packages' => [
        [
            'name' => 'laravel/framework',
            'displayName' => 'Laravel',
            'icon' => 'heroicon-o-cpu-chip',
            'type' => 'packagist',
        ],
        // Add your own packages...
    ],
    'show_deployment_info' => true,
    'heading' => 'System Information',
    'polling_interval' => '60s',
];
```

Package Types
-------------

[](#package-types)

The widget supports two types of packages:

- **`packagist`**: Composer packages that can be checked for updates via Packagist API
- **`php`**: PHP version (automatically detected)

Deployment Information
----------------------

[](#deployment-information)

The widget automatically shows deployment information by:

1. **Git**: Reading the last commit message and timestamp from `git log`
2. **Fallback**: Reading from a `.release-info` file (format: `message|timestamp`)

The deployment info can be disabled:

```
SystemInfoWidget::make()
    ->showDeploymentInfo(false)
```

Features
--------

[](#features)

- **Version Monitoring**: Tracks current versions of configured packages
- **Update Notifications**: Highlights packages with available updates
- **Deployment Tracking**: Shows last deployment time and commit message
- **Configurable**: Customize which packages to monitor and display settings
- **Auto-polling**: Refreshes data at configurable intervals
- **Production Ready**: Graceful fallbacks when git/data is unavailable

Package Structure
-----------------

[](#package-structure)

```
├── config/
│   └── filament-system-info.php
├── src/
│   ├── FilamentSystemInfoServiceProvider.php
│   └── Widgets/
│       └── SystemInfoWidget.php
├── composer.json
└── README.md

```

Requirements
------------

[](#requirements)

- PHP 8.1+
- Laravel 10.0+ or 11.0+
- Filament 5.0+

License
-------

[](#license)

This package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance89

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~6 days

Recently: every ~11 days

Total

13

Last Release

55d ago

Major Versions

v1.0.3 → v2.0.02026-01-16

### Community

Maintainers

![](https://www.gravatar.com/avatar/c2262f27ff08e3a2649bcc587627ab4a14d3f26d2d2466b3d31d2f5284957c1a?d=identicon)[Michael4d45](/maintainers/Michael4d45)

---

Top Contributors

[![Michael4d45](https://avatars.githubusercontent.com/u/2423882?v=4)](https://github.com/Michael4d45 "Michael4d45 (13 commits)")

### Embed Badge

![Health badge](/badges/michael4d45-filament-system-info-widget/health.svg)

```
[![Health](https://phpackages.com/badges/michael4d45-filament-system-info-widget/health.svg)](https://phpackages.com/packages/michael4d45-filament-system-info-widget)
```

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[jeffersongoncalves/filament-qrcode-field

A Laravel Filament package that provides QR Code field functionality for your web applications. This package extends Filament v3 with a simple QR code input component.

113.2k](/packages/jeffersongoncalves-filament-qrcode-field)

PHPackages © 2026

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