Download the PHP package voral/laravel-version-increment without Composer
On this page you can find all versions of the php package voral/laravel-version-increment. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download voral/laravel-version-increment
More information about voral/laravel-version-increment
Files in voral/laravel-version-increment
Package laravel-version-increment
Short Description Laravel Artisan adapter for vs-version-incrementor — automated versioning and changelog generation based on Git commits.
License MIT
Homepage https://github.com/Voral/laravel-version-increment
Informations about the package laravel-version-increment
Laravel Adapter for vs-version-incrementor
This package provides a native Artisan command for vs-version-incrementor — a tool for automated version management and CHANGELOG.md
generation based on Git commit analysis.
Now you can leverage all features of vs-version-incrementor directly from the Laravel console — without manually
invoking external scripts.
Installation
Install the package via Composer:
The package is auto-registered thanks to Laravel Package Auto-Discovery.
Usage
After installation, the following Artisan commands become available.
Increment the version:
Preview changes that would be included in the next version and the expected new version — without modifying any files:
Update CHANGELOG.md and composer.json (if configured), but skip creating the final Git commit and tag:
List all registered commit types and scopes:
Requirements
- PHP 8.2+
- Laravel 11 or 12
- Git available in
PATH voral/version-increment(installed automatically as a dependency)
Configuration
The adapter uses the same configuration file as the original CLI tool.
Create .vs-version-increment.php in your project root to customize:
- rules for determining major/minor/patch increments,
CHANGELOG.mdformatting,- ignoring untracked files,
- handling squashed commits,
- custom commit types, and more.
See the full documentation: vs-version-incrementor Configuration Guide
Implementation Details
This package is a thin wrapper around the original utility: it invokes ./vendor/bin/vs-version-increment with the
appropriate arguments and flags, ensuring full behavioral parity with the standalone CLI tool.
License
MIT. See LICENSE for details.
Depends on: vs-version-incrementor — automated versioning based on Git history.

