pschilly/filament-dcs-server-stats

This package is a series of widgets, pages and panels for Filament PHP and is loaded as a plugin. It interfaces with the DCS Server Bot API by Special-K to obtain statistics gathered from managed Digital Combat Simulator (DCS) servers.

0.1.1 2025-08-24 10:34 UTC

This package is auto-updated.

Last update: 2025-08-24 10:38:38 UTC


README

Filament 4.x Required DCSServerBotAPI DCSServerBot GitHub Actions Workflow Status

This package is a series of widgets, pages and panels for Filament PHP and is loaded as a plugin. It interfaces with the DCS Server Bot API by Special-K to obtain statistics gathered from managed Digital Combat Simulator (DCS) servers.

Installation

You can install the package via composer:

composer require pschilly/filament-dcs-server-stats

Important

If you have not set up a custom theme and are using Filament Panels follow the instructions in the Filament Docs first.

After setting up a custom theme add the plugin's views to your theme css file or your app's css file if using the standalone packages.

@source '../../../../vendor/pschilly/filament-dcs-server-stats/resources/**/*.blade.php';

You can publish and run the migrations with:

php artisan vendor:publish --tag="filament-dcs-server-stats-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="filament-dcs-server-stats-config"

Optionally, you can publish the views using

php artisan vendor:publish --tag="filament-dcs-server-stats-views"

This is the contents of the published config file:

return [
];

Usage

$filamentDcsServerStats = new Pschilly\FilamentDcsServerStats();
echo $filamentDcsServerStats->echoPhrase('Hello, Pschilly!');

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.