vursion/vursion

vursion

Fund package maintenance!
vursion

1.7.0 2024-03-13 08:00 UTC

This package is auto-updated.

Last update: 2024-04-13 08:07:16 UTC


README

The missing monitor!

Latest Version on Packagist Tests Total Downloads

Installation

You can install the package via composer:

composer require vursion/vursion

No need to register the service provider if you're using Laravel >= 5.5. The package will automatically register itself. Once the package is installed, you can register the service provider in config/app.php in the providers array:

'providers' => [
	...
	Vursion\Vursion\VursionServiceProvider::class
],

Configure your vursion API key in your .env file.

VURSION_KEY=

To publish the config file to config/vursion.php run:

php artisan vursion:publish

This is the content of the published config file:

return [

    'key' => env('VURSION_KEY'),

    'enabled' => env('VURSION_ENABLED', true),

];

Don't forget to add the cron job needed to trigger Laravel’s scheduling!

Please see https://laravel.com/docs/master/scheduling for more information on adding the cron entry to your server.

Changelog

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security related issues, please email jochen@celcius.be instead of using the issue tracker.

Credits

License

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