https://github.com/Soullivaneuh/composer-versions-check
Checks if packages are up to date to last major versions after update
https://github.com/Soullivaneuh/composer-versions-check
Last synced: 5 months ago
JSON representation
Checks if packages are up to date to last major versions after update
- Host: GitHub
- URL: https://github.com/Soullivaneuh/composer-versions-check
- Owner: soullivaneuh
- License: mit
- Created: 2015-10-01T10:48:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-02T15:35:28.000Z (over 3 years ago)
- Last Synced: 2024-10-29T22:32:57.660Z (6 months ago)
- Language: PHP
- Size: 64.5 KB
- Stars: 234
- Watchers: 13
- Forks: 15
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-composer - Composer-Versions-Check - Shows outdated packages from last major versions after using the update command (showing "Latest is vX.Y.Z"). (Plugins / Support)
README
# composer-versions-check
composer-versions-check is a plugin for Composer.
It warns user for outdated packages from last major versions after update command.
[](https://packagist.org/packages/sllh/composer-versions-check)
[](https://packagist.org/packages/sllh/composer-versions-check)
[](https://packagist.org/packages/sllh/composer-versions-check)
[](https://www.versioneye.com/php/sllh:composer-versions-check)
[](https://www.versioneye.com/php/sllh:composer-versions-check/references)[](https://packagist.org/packages/sllh/composer-versions-check)
[](https://packagist.org/packages/sllh/composer-versions-check)
[](https://packagist.org/packages/sllh/composer-versions-check)[](https://travis-ci.org/Soullivaneuh/composer-versions-check)
[](https://scrutinizer-ci.com/g/Soullivaneuh/composer-versions-check/?branch=master)
[](https://codeclimate.com/github/Soullivaneuh/composer-versions-check)
[](https://coveralls.io/r/Soullivaneuh/composer-versions-check?branch=master)
[](https://insight.sensiolabs.com/projects/278a8379-fb6d-425f-b175-7d7b9ef93d47)
Screencast provided by [Silentcast](https://github.com/colinkeenan/silentcast).
## Installation
You can install it either globally (recommended):
```bash
composer global require sllh/composer-versions-check
```or locally (as require-dev dependency then):
```bash
composer require --dev sllh/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`](https://getcomposer.org/doc/03-cli.md#composer-home) file. Here is the default one:
```json
{
"config": {
"sllh-composer-versions-check": {
"show-links": false
}
}
}
```* `show-links`: Shows outdated package links. Set to `true` to get a larger output, like the demo.