jenschude/version-variables

This package is abandoned and no longer maintained. No replacement package was suggested.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:composer-plugin

dev-master 2020-02-05 14:40 UTC

This package is auto-updated.

Last update: 2021-05-05 17:52:33 UTC


README

This composer plugin makes it possible to use variable placeholders as a version string. Please be aware this is meant as a proof of concept.

Usage:

composer require jenschude/version-variables

In your composer json replace a version string with

{
    "requires": {
       "vendor/package1": "0+:variablename",
       "vendor/package2": "0+:variablename"
    },
    "extra": {
        "versionvariables": {
            ":variablename": "^1.0"
        }
    }
}