eiriksm / semver-to-drupal
There is no license information available for the latest version (dev-master) of this package.
Convert semver versions to Drupal git tags.
dev-master
2017-07-23 12:27 UTC
Requires (Dev)
- phpunit/phpunit: ^5.7
- satooshi/php-coveralls: ^1.0
This package is auto-updated.
Last update: 2024-10-29 05:05:00 UTC
README
What is it?
A super small library to convert semver versions to Drupal git tags.
Why is it?
On Violinist.io, the continuous automatic composer updater, we retrieve the changelog between versions when we create pull requests to your projects. So to retrieve these based on your composer files, we need to convert between these formats.
Installation
composer require semver-to-drupal
Usage
<?php use eiriksm\SemverToDrupal\Converter; // Default usage, assumes major version 8. print Converter::convertToDrupal('1.0.0'); // Prints 8.x-1.0. // Usage with Drupal version 7. print Converter::convertToDrupal('1.16.0', 7); // Prints 7.x-1.16.