mcuelenaere/composer-revision-plugin

Simple composer plugin which generates a class containing the VCS references of all packages

Installs: 6 470

Dependents: 3

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 0

Open Issues: 0

Type:composer-plugin

pkg:composer/mcuelenaere/composer-revision-plugin

0.1.0 2015-01-03 18:44 UTC

This package is auto-updated.

Last update: 2025-09-10 06:35:28 UTC


README

Simple composer plugin which generates a class containing the VCS references of all packages

Installation

Just run

composer require mcuelenaere/composer-revision-plugin

to add this package as a composer dependency to your project.

Usage

All references of the packages you're using in your project can be accessed through the static ComposerRevisions\Revisions::$byName variable:

$revisionOfMyProject = ComposerRevisions\Revisions::$byName['foo/my-project'];
$revisionOfMyLibrary = ComposerRevisions\Revisions::$byName['foo/my-library'];