deviantintegral / composer-gavel
Enforce a minimum Composer version for your team
Installs: 100 062
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 3
Forks: 3
Open Issues: 4
Type:composer-plugin
Requires
- php: ^8.0
- composer-plugin-api: ^2.0
Requires (Dev)
- composer/composer: 2.4.4
- mikey179/vfsstream: 1.6.11
- phpunit/phpunit: 9.5.27
This package is auto-updated.
Last update: 2024-11-27 14:41:24 UTC
README
I judge your Composer to be insufficent
Rationale
We've worked on many projects with larger teams where developers end up with
multiple versions of composer all over their local environments. This plugin
will ensure that composer version warnings can't be ignored by developers, which
is especially useful when developers need to run composer update
.
Usage
$ composer global require deviantintegral/composer-gavel
Add plugin to your project and update other dependencies
$ composer require --dev deviantintegral/composer-gavel
$ composer update
Add without updating anything
$ composer require --dev deviantintegral/composer-gavel
- Update the composer.lock hash with
$ composer update --lock
.
When the running composer version does not satisfy the constraint, an error will be thrown.
It's recommended to require this plugin on a per-project basis as well as globally. If the plugin is not globally installed, then the version check will not run during the very first composer install or update. The per-project requirement ensures that the plugin is activated after the initial install. The composer version is a root-only key and is not used in dependencies.