stepanenko3/composer-versions-check

Checks if packages are up to date to last major versions after update

v0.1.3 2021-07-02 10:33 UTC

This package is auto-updated.

Last update: 2024-04-09 22:51:07 UTC


README

composer-versions-check is a plugin for Composer.

It warns user for outdated packages from last major versions after update command.

Latest Version on Packagist Total Downloads License

composer-versions-check_demo

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 to true to get a larger output, like the demo.
  • vendor: Limits the output to a specific vendor/provider.