mediawiki / extension-manager
Extension manager for MediaWiki
Installs: 110
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 4
Type:mediawiki-extension
Requires
- php: >=5.3.2
- composer/installers: 1.*,>=1.0.1
- jeroen-de-dauw/i18n: ~0.1
This package is auto-updated.
Last update: 2020-01-30 13:10:49 UTC
README
Requires MediaWiki 1.20 or later.
A simple extension that deploys a Special:ListComposerPackages
page in order to display
information about which composer packages are installed and used within MediaWiki.
WebApi
An interface to access installed composer packages.
api.php?action=composerpackages
Installation
The recommended way to install this extension is through Composer
. Just add the following to the
MediaWiki composer.json
file and run the php composer.phar install/update
command.
{ "require": { "mwjames/composer-packages": "dev-master" }, "repositories": [ { "type": "vcs", "url": "https://github.com/mwjames/composer-packages" } ], "minimum-stability" : "dev" }
A manual installation will be insufficient due to usage of the Composer autoloader. For more information about how to use MediaWiki and Composer, see here.