Page MenuHomePhabricator

SpecialVersion includes extensions/skins included via composer, API doesn't
Open, LowPublic

Description

		foreach ( SpecialVersion::parseComposerInstalled( $credits ) as $name => $info ) {
			if ( str_starts_with( $info['type'], 'mediawiki-' ) ) {
				// Skip any extensions or skins since they'll be listed
				// in their proper section
				continue;
			}
			$data[] = [
				'name' => $name,
				'version' => $info['version'],
			];
		}