beyondcode / nova-laravel-update-card
A Laravel Nova card that shows you if you're running the latest Version of Laravel.
Installs: 12 560
Dependents: 0
Suggesters: 0
Security: 0
Stars: 34
Watchers: 1
Forks: 3
Open Issues: 1
Requires
- php: >=7.1.0
- composer/semver: ^1.4
- knplabs/packagist-api: ^1.5
- laravel/nova: *
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
This package is auto-updated.
Last update: 2021-05-08 01:02:51 UTC
README
Check if you're running the latest Laravel version right from your Nova dashboard.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require beyondcode/nova-laravel-update-card
Next up, you must register the card with Nova. This is typically done in the cards
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvder.php // ... public function cards() { return [ // ... new \Beyondcode\LaravelUpdateCard\LaravelUpdateCard(), ]; }
Usage
Just visit your Nova dashboard and you'll get information about whether or not you're running the latest stable Laravel version.
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email marcel@beyondco.de instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.