{"id":28953505,"url":"https://github.com/cmsmaxinc/filament-system-versions","last_synced_at":"2026-01-31T17:12:58.917Z","repository":{"id":277754745,"uuid":"933292669","full_name":"cmsmaxinc/filament-system-versions","owner":"cmsmaxinc","description":"This package offers a set of widgets to showcase the current system versions, including composer dependencies.","archived":false,"fork":false,"pushed_at":"2026-01-27T16:19:08.000Z","size":413,"stargazers_count":13,"open_issues_count":2,"forks_count":9,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-28T02:54:26.021Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cmsmaxinc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-15T16:04:07.000Z","updated_at":"2026-01-27T16:19:13.000Z","dependencies_parsed_at":"2025-02-15T22:01:38.961Z","dependency_job_id":"398d70fb-4bea-4294-93cd-a0c20d62617a","html_url":"https://github.com/cmsmaxinc/filament-system-versions","commit_stats":null,"previous_names":["cmsmaxinc/filament-system-versions"],"tags_count":15,"template":false,"template_full_name":"filamentphp/plugin-skeleton","purl":"pkg:github/cmsmaxinc/filament-system-versions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmsmaxinc%2Ffilament-system-versions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmsmaxinc%2Ffilament-system-versions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmsmaxinc%2Ffilament-system-versions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmsmaxinc%2Ffilament-system-versions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cmsmaxinc","download_url":"https://codeload.github.com/cmsmaxinc/filament-system-versions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmsmaxinc%2Ffilament-system-versions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28948359,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-23T18:09:07.347Z","updated_at":"2026-01-31T17:12:58.912Z","avatar_url":"https://github.com/cmsmaxinc.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Filament System Versions\n\n![Filament System Versions](https://github.com/cmsmaxinc/filament-system-versions/raw/main/thumbnail.jpg)\n\nThis package provides a comprehensive system information page and widgets for Filament panels, showcasing current system versions, PHP information, and Composer dependencies.\n\n## Features\n\n- 📊 **System Versions Page** - A dedicated page displaying system information\n- 🔍 **Dependency Monitoring** - Track outdated Composer dependencies\n- 📈 **System Stats Widget** - Display Laravel and Filament versions\n- ⚙️ **System Info Widget** - Show environment, PHP version, and Laravel version\n- 🎨 **Customizable Navigation** - Configure navigation group, icon, label, and sort order\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require cmsmaxinc/filament-system-versions\n```\n\n## Setup\n\n### 1. Register the Plugin\n\nAdd the plugin to your Filament panel configuration:\n\n```php\nuse Cmsmaxinc\\FilamentSystemVersions\\FilamentSystemVersionsPlugin;\nuse Filament\\Panel;\n\npublic function panel(Panel $panel): Panel\n{\n    return $panel\n        // ... other configuration\n        -\u003eplugin(FilamentSystemVersionsPlugin::make());\n}\n```\n\n### 2. Publish and Run Migrations\n\n```bash\nphp artisan vendor:publish --tag=\"filament-system-versions-migrations\"\nphp artisan migrate\n```\n\n### 3. Configuration (Optional)\n\nPublish the config file:\n\n```bash\nphp artisan vendor:publish --tag=\"filament-system-versions-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n    'database' =\u003e [\n        'table_name' =\u003e 'composer_versions',\n    ],\n    'widgets' =\u003e [\n        'dependency' =\u003e [\n            'show_direct_only' =\u003e true,\n        ],\n    ],\n    'paths' =\u003e [\n        'php_path' =\u003e env('PHP_PATH', ''),\n        'composer_path' =\u003e env('COMPOSER_PATH', ''),\n    ],\n];\n```\n\n### 4. Translations (Optional)\n\nIf you want to customize the translations, you can publish the translations file:\n\n```bash\nphp artisan vendor:publish --tag=\"filament-system-versions-translations\"\n```\n\n## Usage\n\n### Basic Usage\n\nOnce the plugin is registered, a \"System Versions\" page will automatically be added to your Filament panel under the \"Settings\" navigation group. This page displays:\n\n- System version statistics (Laravel \u0026 Filament versions)\n- Outdated dependency information\n- System environment details\n\n### Customizing Navigation\n\nYou can customize the navigation appearance and behavior using fluent methods when registering the plugin:\n\n```php\nuse Cmsmaxinc\\FilamentSystemVersions\\FilamentSystemVersionsPlugin;\n\npublic function panel(Panel $panel): Panel\n{\n    return $panel\n        // ... other configuration\n        -\u003eplugin(\n            FilamentSystemVersionsPlugin::make()\n                -\u003enavigationLabel('System Info')\n                -\u003enavigationGroup('Administration')\n                -\u003enavigationIcon('heroicon-o-cpu-chip') // Or use Enum\n                -\u003enavigationSort(10)\n        );\n}\n```\n\n#### Available Configuration Methods\n\n- `navigationLabel(string $label)` - Set the navigation menu label (default: 'System Versions')\n- `navigationGroup(string $group)` - Set the navigation group (default: 'Settings')\n- `navigationIcon(string $icon)` - Set the navigation icon (default: 'heroicon-o-document-text')\n- `navigationSort(int $sort)` - Set the navigation sort order (default: 99999)\n\n### Dependency Versions Command\n\n\u003e [!NOTE]  \n\u003e Make sure you run this command at least once to store the current composer dependencies.\n\nTo check for outdated composer dependencies:\n\n```bash\nphp artisan dependency:versions\n```\n\n#### Automatic Scheduling\n\nAdd the command to your scheduler to run it automatically:\n\n```php\nuse Cmsmaxinc\\FilamentSystemVersions\\Commands\\CheckDependencyVersions;\n\n// In your Console Kernel or service provider\nSchedule::command(CheckDependencyVersions::class)-\u003edaily();\n```\n\n### Using Individual Widgets\n\nYou can also use the widgets independently in your own pages or dashboards:\n\n#### DependencyWidget\n\nDisplays all outdated composer dependencies with current and latest versions:\n\n```php\nuse Cmsmaxinc\\FilamentSystemVersions\\Filament\\Widgets\\DependencyWidget;\n\n-\u003ewidgets([\n    DependencyWidget::class\n])\n```\n\n#### SystemInfoWidget\n\nShows system environment information:\n\n```php\nuse Cmsmaxinc\\FilamentSystemVersions\\Filament\\Widgets\\SystemInfoWidget;\n\n-\u003ewidgets([\n    SystemInfoWidget::class\n])\n```\n\n#### DependencyStat\n\nCreate custom stat widgets for specific dependencies:\n\n```php\nuse Cmsmaxinc\\FilamentSystemVersions\\Filament\\Widgets\\DependencyStat;\nuse Filament\\Widgets\\StatsOverviewWidget as BaseWidget;\n\nclass CustomStats extends BaseWidget\n{\n    protected function getStats(): array\n    {\n        return [\n            DependencyStat::make('Laravel')\n                -\u003edependency('laravel/framework'),\n            DependencyStat::make('FilamentPHP')\n                -\u003edependency('filament/filament'),\n            DependencyStat::make('Livewire')\n                -\u003edependency('livewire/livewire'),\n        ];\n    }\n}\n```\n\n### Adding Widgets to Blade Views\n\nTo add widgets to custom blade views:\n\n```blade\n\u003cx-filament-panels::page\u003e\n    @livewire(\\Cmsmaxinc\\FilamentSystemVersions\\Filament\\Widgets\\DependencyWidget::class)\n    @livewire(\\Cmsmaxinc\\FilamentSystemVersions\\Filament\\Widgets\\SystemInfoWidget::class)\n\u003c/x-filament-panels::page\u003e\n```\n\n### Custom Theme Support\n\nIf you're using a custom theme, add the following to your `theme.css` file to ensure proper styling:\n\n```css\n@source '../../../../vendor/cmsmaxinc/filament-system-versions/resources/**/*.blade.php';\n```\n\n### Contact Info\n\ninfo@cmsmax.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcmsmaxinc%2Ffilament-system-versions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcmsmaxinc%2Ffilament-system-versions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcmsmaxinc%2Ffilament-system-versions/lists"}