Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4092557
ComposerInstalled.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
961 B
Referenced Files
None
Subscribers
None
ComposerInstalled.php
View Options
<?php
namespace
Wikimedia\Composer
;
/**
* Reads an installed.json file and provides accessors to get what is
* installed
*
* @since 1.27
*/
class
ComposerInstalled
{
/**
* @var array[]
*/
private
$contents
;
/**
* @param string $location
*/
public
function
__construct
(
$location
)
{
$this
->
contents
=
json_decode
(
file_get_contents
(
$location
),
true
);
}
/**
* Dependencies currently installed according to installed.json
*
* @return array[]
*/
public
function
getInstalledDependencies
()
{
$contents
=
$this
->
contents
[
'packages'
];
$deps
=
[];
foreach
(
$contents
as
$installed
)
{
$deps
[
$installed
[
'name'
]]
=
[
'version'
=>
ComposerJson
::
normalizeVersion
(
$installed
[
'version'
]
),
'type'
=>
$installed
[
'type'
],
'licenses'
=>
$installed
[
'license'
]
??
[],
'authors'
=>
$installed
[
'authors'
]
??
[],
'description'
=>
$installed
[
'description'
]
??
''
,
];
}
ksort
(
$deps
);
return
$deps
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Aug 18 2026, 12:16 (4 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
84/88/06af3573dc64105e1c8bb808f7e2
Default Alt Text
ComposerInstalled.php (961 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment