dereuromark / composer-versions-check
Checks if packages are up to date to last major versions after update
Installs: 226 061
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 15
Type:composer-plugin
Requires
- php: >=7.4
- composer-plugin-api: ^2.0
- composer/semver: ^3.2.5
- symfony/console: ^4.4 || ^5.3 || ^6.0
Requires (Dev)
- composer/composer: ^2.0
- phpunit/phpunit: 9.6.5
- symfony/phpunit-bridge: ^5.3.3
This package is auto-updated.
Last update: 2024-10-22 00:35:47 UTC
README
A plugin for Composer. It warns user for outdated packages from last major versions after update command.
Screencast provided by Silentcast.
Installation
You can install it either globally (recommended):
composer global require dereuromark/composer-versions-check
or locally (as require-dev dependency then):
composer require --dev dereuromark/composer-versions-check
Usage
That's it! Composer will enable automatically the plugin as soon it's installed.
Just run composer update
command to see the plugin working.
Configuration
You can configure the plugin via the COMPOSER_HOME/config.json
file. Here is the default one:
{ "config": { "dereuromark-composer-versions-check": { "show-links": false } } }
show-links
: Shows outdated package links. Set totrue
to get a larger output, like the demo.