Skip to content

avgkudey/pulse-dep-track

Repository files navigation

Simple outdated dependency checker for laravel pulse dashboard

Latest Version on Packagist Tests Total Downloads

Installation

You can install the package via composer:

composer require avgkudey/pulse-dep-track

Register Recorders

pulse.php

return [
    // ...
  Avgkudey\PulseDepTrack\Recorders\ComposerOutdatedRecorder::class => [],
  Avgkudey\PulseDepTrack\Recorders\NpmOutdatedRecorder::class => [],
]

Running Once

php artisan deptrack:composer
php artisan deptrack:npm

Schedule

routes/console.php

Schedule::daily()
    ->timezone('UTC')
    ->group(function () {
        Schedule::command('deptrack:composer');
        Schedule::command('deptrack:npm');
    });

Add to pulse Dashboard

    <livewire:deptrack.composer-outdated cols="full"/>
    
    <livewire:deptrack.npm-outdated cols="full"/>

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Contributors 3

  •  
  •  
  •