-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathConfigHashNormalizer.php
81 lines (64 loc) · 1.87 KB
/
ConfigHashNormalizer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
declare(strict_types=1);
/**
* Copyright (c) 2018-2025 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
*
* @see https://github.com/ergebnis/json-normalizer
*/
namespace Ergebnis\Json\Normalizer\Vendor\Composer;
use Ergebnis\Json\Json;
use Ergebnis\Json\Normalizer\Format;
use Ergebnis\Json\Normalizer\Normalizer;
final class ConfigHashNormalizer implements Normalizer
{
private const PROPERTIES_WITH_WILDCARDS = [
/**
* @see https://getcomposer.org/doc/06-config.md#allow-plugins
*/
'allow-plugins',
/**
* @see https://getcomposer.org/doc/06-config.md#preferred-install
*/
'preferred-install',
];
private WildcardSorter $wildcardSorter;
public function __construct()
{
$this->wildcardSorter = new WildcardSorter();
}
public function normalize(Json $json): Json
{
$decoded = $json->decoded();
if (!\is_object($decoded)) {
return $json;
}
if (!\property_exists($decoded, 'config')) {
return $json;
}
if (!\is_object($decoded->config)) {
return $json;
}
/** @var array<string, mixed> $config */
$config = (array) $decoded->config;
if ([] === $config) {
return $json;
}
\ksort($config);
foreach (self::PROPERTIES_WITH_WILDCARDS as $property) {
$this->wildcardSorter->sortPropertyWithWildcard(
$config,
$property,
);
}
$decoded->config = $config;
/** @var string $encoded */
$encoded = \json_encode(
$decoded,
Format\JsonEncodeOptions::default()->toInt(),
);
return Json::fromString($encoded);
}
}