Download the PHP package ergebnis/composer-json-normalizer without Composer
On this page you can find all versions of the php package ergebnis/composer-json-normalizer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ergebnis/composer-json-normalizer
More information about ergebnis/composer-json-normalizer
Files in ergebnis/composer-json-normalizer
Package composer-json-normalizer
Short Description Provides normalizers for normalizing composer.json.
License MIT
Homepage https://github.com/ergebnis/composer-json-normalizer
Informations about the package composer-json-normalizer
composer-json-normalizer
Provides normalizers for normalizing composer.json
.
Installation
Run
Usage
Create an instance of Ergebnis\Composer\Json\Normalizer\ComposerJsonNormalizer
and use it to normalize the contents of a composer.json
:
:bulb: Looking for the composer plugin? Head over to localheinz/composer-normalize
.
Normalizers
The ComposerJsonNormalizer
composes normalizers provided by localheinz/json-normalizer
:
as well as the following normalizers provided by this package:
Ergebnis\Composer\Json\Normalizer\BinNormalizer
Ergebnis\Composer\Json\Normalizer\ConfigHashNormalizer
Ergebnis\Composer\Json\Normalizer\PackageHashNormalizer
Ergebnis\Composer\Json\Normalizer\VersionConstraintNormalizer
BinNormalizer
If composer.json
contains an array of scripts in the bin
section,
the BinNormalizer
will sort the elements of the bin
section by value in ascending order.
:bulb: Find out more about the bin
section at https://getcomposer.org/doc/04-schema.md#bin.
ConfigHashNormalizer
If composer.json
contains any configuration in the
config
extra
scripts-descriptions
sections, the ConfigHashNormalizer
will sort the content of these sections
by key in ascending order.
:bulb: Find out more about the config
section at https://getcomposer.org/doc/06-config.md.
PackageHashNormalizer
If composer.json
contains any configuration in the
conflict
provide
replace
require
require-dev
suggest
sections, the PackageHashNormalizer
will sort the content of these sections.
:bulb: This transfers the behaviour from using the --sort-packages
or
sort-packages
configuration flag to other sections. Find out more about
the --sort-packages
flag and configuration at https://getcomposer.org/doc/06-config.md#sort-packages
and https://getcomposer.org/doc/03-cli.md#require.
VersionConstraintNormalizer
If composer.json
contains version constraints in the
conflict
provide
replace
require
require-dev
sections, the VersionConstraintNormalizer
will ensure that
- all constraints are trimmed
- and constraints are separated by a single space (
`) or a comma (
,`) - or constraints are separated by double-pipe with a single space before and after (
||
) - range constraints are separated by a single space (
:bulb: Find out more about version constraints at https://getcomposer.org/doc/articles/versions.md.
Changelog
Please have a look at CHANGELOG.md
.
Contributing
Please have a look at CONTRIBUTING.md
.
Code of Conduct
Please have a look at CODE_OF_CONDUCT.md
.
License
This package is licensed using the MIT License.
Credits
The algorithm for sorting packages in the PackageHashNormalizer
has
been adopted from Composer\Json\JsonManipulator::sortPackages()
(originally licensed under MIT by Nils Adermann and Jordi Boggiano),
which I initially contributed to composer/composer
with composer/composer#3549
and composer/composer#3872
.
All versions of composer-json-normalizer with dependencies
ext-json Version *
ergebnis/json-normalizer Version ~0.10.1
justinrainbow/json-schema Version ^4.0.0 || ^5.0.0