Skip to content

Commit 38c11d2

Browse files
committed
feat: add installed packages configuration property to ComposerJson class
1 parent 66f9699 commit 38c11d2

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/Composer/Json/ComposerJson.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ final class ComposerJson implements ComposerJsonInterface
5858
*/
5959
private array $data;
6060

61+
/**
62+
* Stores the installed packages configuration.
63+
*
64+
* This property MUST contain the data read from the installed packages
65+
* configuration file during construction. Consumers SHOULD treat the
66+
* structure as internal implementation detail and SHALL rely on accessor
67+
* methods instead of direct access.
68+
*
69+
* @var array<string, mixed>
70+
*/
6171
private array $installed;
6272

6373
/**

0 commit comments

Comments
 (0)