MediaWiki REL1_33
ComposerPackageModifier.php
Go to the documentation of this file.
1<?php
2
6
12
13 const MEDIAWIKI_PACKAGE_NAME = 'mediawiki/mediawiki';
14
15 protected $package;
17 protected $versionFetcher;
18
19 public function __construct( Package $package,
21 ) {
22 $this->package = $package;
23 $this->versionNormalizer = $versionNormalizer;
24 $this->versionFetcher = $versionFetcher;
25 }
26
27 public function setProvidesMediaWiki() {
28 $this->setLinkAsProvides( $this->newMediaWikiLink() );
29 }
30
31 private function setLinkAsProvides( Link $link ) {
32 $this->package->setProvides( [ $link ] );
33 }
34
35 private function newMediaWikiLink() {
36 $version = $this->getMediaWikiVersionConstraint();
37
38 $link = new Link(
39 '__root__',
40 self::MEDIAWIKI_PACKAGE_NAME,
41 $version,
42 'provides',
43 $version->getPrettyString()
44 );
45
46 return $link;
47 }
48
49 private function getMediaWikiVersionConstraint() {
50 $mvVersion = $this->versionFetcher->fetchVersion();
51 $mvVersion = $this->versionNormalizer->normalizeSuffix( $mvVersion );
52
53 $version = new Constraint(
54 '==',
55 $this->versionNormalizer->normalizeLevelCount( $mvVersion )
56 );
57 $version->setPrettyString( $mvVersion );
58
59 return $version;
60 }
61
62}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
__construct(Package $package, ComposerVersionNormalizer $versionNormalizer, MediaWikiVersionFetcher $versionFetcher)
Provides access to MediaWiki's version without requiring MediaWiki (or anything else) being loaded fi...
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3069