PHP code example of cmsmaxinc / filament-system-versions

1. Go to this page and download the library: Download cmsmaxinc/filament-system-versions library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

cmsmaxinc / filament-system-versions example snippets


return [
    'database' => [
        'table_name' => 'composer_versions',
    ],
    'widgets' => [
        'dependency' => [
            'show_direct_only' => true,
        ],
    ],
];

Schedule::call(CheckDependencyVersions::class)->daily();

->widgets([
    DependencyWidget::make(),
])

class StatsOverview extends BaseWidget
{
    protected function getStats(): array
    {
        return [
            DependencyStat::make('Laravel')
                ->dependency('laravel/framework'),
            DependencyStat::make('FilamentPHP')
                ->dependency('filament/filament'),
        ];
    }
}
bash
php artisan vendor:publish --tag="filament-system-versions-migrations"
php artisan migrate
bash
'./vendor/cmsmaxinc/filament-system-versions/resources/**/*.blade.php',
bash
php artisan vendor:publish --tag="filament-system-versions-translations"
bash
php artisan vendor:publish --tag="filament-system-versions-config"
bash
php artisan dependency:versions