미디어위키 Packagist

This page is a translated version of the page MediaWiki Packagist and the translation is 39% complete.

미디어위키 패키지리스트는 Composer 저장소로서 미디어위키 확장과 스킨 디렉토리를 반영합니다.

Manual on MediaWiki Tools
MediaWiki Packagist
Release status: stable
Implementation Plugin for third party software
Description 컴포저를 사용하여 미디어위키 확장 프로그램을 다운로드 할 수 있습니다
Author(s) Pierre Rudloff (Rudlofftalk)
Latest version 1.0.0
License GPL-3.0
Download https://mwpackagist.netlib.re/

사용법

  1. Add the repository to your composer.json
  1. Add the desired extensions and skins to your requirements using mediawiki as the vendor name.
  1.  Run composer update
  1.  Packages are installed to extensions/ or skins/

If you need a base setup to install the MediaWiki core with Composer, you can clone this repository.

버전

MediaWiki extensions usually provide a branch for each of the maintained MediaWiki version. We convert these branches into a semantic version number. So you need to use your current MediaWiki version (e.g. 1.26) as version constraint for your extensions in your composer.json.

Example composer.json

{
	"name": "acme/mediawiki-example",
	"description": "My MediaWiki site",
	"license": "proprietary",
	"repositories": [{
		"type": "composer",
		"url": "https://mwpackagist.netlib.re/"
	}],
	"require": {
		"mediawiki/AJAXPoll": "~1.26.0",
		"mediawiki/BlueSky": "~1.26.0"
	}
}

사용 가능한 확장기능

You can find the list of all the available extensions (and their versions): https://mwpackagist.netlib.re/repo/

기여하기

You can get the code and report issues on GitHub.