https://github.com/vursion/vursion
Track Laravel, PHP, NPM and composer dependency versions across your projects.
https://github.com/vursion/vursion
composer dependencies env laravel npm php version-manager
Last synced: 7 months ago
JSON representation
Track Laravel, PHP, NPM and composer dependency versions across your projects.
- Host: GitHub
- URL: https://github.com/vursion/vursion
- Owner: vursion
- License: mit
- Created: 2019-12-18T14:46:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-24T13:54:29.000Z (over 1 year ago)
- Last Synced: 2025-10-20T14:59:57.996Z (9 months ago)
- Topics: composer, dependencies, env, laravel, npm, php, version-manager
- Language: PHP
- Homepage: https://www.vursion.io
- Size: 130 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# VURSION
The missing monitor!
[](https://packagist.org/packages/vursion/vursion)

[](https://packagist.org/packages/vursion/vursion)
## Installation
You can install the package via composer:
```bash
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:
```php
'providers' => [
...
Vursion\Vursion\VursionServiceProvider::class
],
```
Configure your vursion API key in your `.env` file.
```bash
VURSION_KEY=
```
To publish the config file to `config/vursion.php` run:
```bash
php artisan vursion:publish
```
This is the content of the published config file:
```php
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](CHANGELOG.md) 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
- [Jochen Sengier](https://github.com/celcius-jochen)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.