cupoftea / composer-auto-normalize
Provides a composer plugin that automatically normalizes your composer.json on install or update
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:composer-plugin
Requires
- php: ^7.1
- composer-plugin-api: ^1.1
- cupoftea/package: ^1.4
- localheinz/composer-normalize: ^1.2
Requires (Dev)
- composer/composer: ^1.8
This package is auto-updated.
Last update: 2024-11-12 02:07:21 UTC
README
Provides a composer plugin that extends localheinz/composer-normalize, and automatically normalizes your composer.json on install or update.
Installation
Composer Auto Normalize can be installed either globally, or as a per project installation. When using it in a project, we recommend installing it as a dev-dependency.
$ composer global require cupoftea/composer-auto-normalize $ composer require --dev cupoftea/composer-auto-normalize
Usage
Once installed, your composer.json file will be normalized every time a composer install or update is executed.
Because this plugin extends localheinz/composer-normalize, you can also manually normalize your
composer.json by running composer normalize
.
Configuration
You can set any arguments and options available on the composer normalize
command as a
default for auto normalization. You can configure this both in your global composer.json, or per project in your
project's composer.json file. Arguments should be set in extra.auto-normalize
by their name, and options in
extra.auto-normalize.options
. For a full list of available arguments and options, see the
Composer Normalize Documentation.
{ "extra": { "auto-normalize": { "options": { "indent-size": 2, "indent-type": "space" } } } }