mediact / composer-unclog-plugin
Shows warnings if you can optimise your composer files even further.
Installs: 70 187
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 2
Open Issues: 0
Type:composer-plugin
Requires
- php: ^7.1
- composer-plugin-api: ^1.1 || ^2.0
Requires (Dev)
- mediact/coding-standard-magento2: @stable
- mediact/testing-suite: @stable
This package is auto-updated.
Last update: 2022-08-10 18:28:23 UTC
README
This package contains a plugin for composer.
The plugin detects optimisations for the composer.json
file of a project.
The plugin hooks in on existing composer commands.
Installation
The package can be installed with:
composer require mediact/composer-unclog-plugin -dev
Configuration
The plugin can be configured to allow more repository types.
This is possible by adding a add-allowed-repositories
array node to the
config
node of the project.
The configuration will look like:
...
"config": {
"add-allowed-repositories": [
"git"
],
"sort-packages": true
},
...
The repository types are then added to the array of allowed repository types in the plugin.
Usage
By running one of the following commands,
the plugin will perform additional checks for the composer.json
file.
composer validate
composer install
composer update
Current checks
- Check if all repositories are of type
composer
. - Check if all packages have version numbers instead of
dev-
packages.
Future ideas
- Add commands to suggestions to fix the problem (
composer optimize --repositories
). - Detect if the package is available on a repository and do a suggestion.
- Detect which packages are being used from a non composer repository and check if it can be installed through another configured repository.