stepanenko3 / composer-versions-check
Checks if packages are up to date to last major versions after update
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 1
Open Issues: 0
Type:composer-plugin
Requires
- php: ^5.3 || ^7.0 || ^8.0
- composer-plugin-api: ^1.0 || ^2.0
Requires (Dev)
- composer/composer: ^1.0 || ^2.0
- symfony/phpunit-bridge: ^2.7.4|^3.0
This package is auto-updated.
Last update: 2024-11-10 00:14:27 UTC
README
composer-versions-check is a plugin for Composer.
It warns user for outdated packages from last major versions after update command.
Installation
You can install it either globally (recommended):
composer global require stepanenko3/composer-versions-check
or locally (as require-dev dependency then):
composer require --dev stepanenko3/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": { "stepanenko3-composer-versions-check": { "root-packages-only": false, "show-links": false, "vendor": "laravel" } } }
ignore-sub-dependencies
: Shows only outdated root packages.show-links
: Shows outdated package links. Set totrue
to get a larger output, like the demo.vendor
: Limits the output to a specific vendor/provider.