mediawiki / semantic-scribunto
A Semantic Mediawiki extension to natively support the Scribunto extension
Package info
github.com/SemanticMediaWiki/SemanticScribunto
Type:mediawiki-extension
pkg:composer/mediawiki/semantic-scribunto
Requires
- php: >=7.3
- composer/installers: ^2|^1.0.1
Requires (Dev)
- mediawiki/semantic-media-wiki: @dev
- phpmd/phpmd: ~2.1
- squizlabs/php_codesniffer: ~3.10
- dev-master / 7.0.0.x-dev
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.0
- dev-drop-pfci-workaround
- dev-audit/correctness-and-security
- dev-audit/perf-hot-path
- dev-remove-bootstrap-class
- dev-bump-ci-mariadb-and-submodule
- dev-modernize-class-imports
- dev-fix-ci
- dev-dependabot/composer/squizlabs/php_codesniffer-approx-4.0
- dev-composer-drop-smw
- dev-rel233
- dev-readme
This package is auto-updated.
Last update: 2026-05-13 21:21:22 UTC
README
Semantic Scribunto (a.k.a. SSC) is a Semantic Mediawiki extension to provide native support for the Scribunto extension.
Requirements
- PHP 8.1 or later
- MediaWiki 1.43 or later
- Semantic MediaWiki 7.0 or later
Installation
The recommended way to install Semantic Scribunto is using Composer with MediaWiki's built-in support for Composer.
Note that the required extensions Semantic MediaWiki and Scribunto must be installed first according to the installation instructions provided.
Step 1
Change to the base directory of your MediaWiki installation. If you do not have a "composer.local.json" file yet, create one and add the following content to it:
{
"require": {
"mediawiki/semantic-scribunto": "~7.0"
}
}
If you already have a "composer.local.json" file add the following line to the end of the "require" section in your file:
"mediawiki/semantic-scribunto": "~7.0"
Remember to add a comma to the end of the preceding line in this section.
Step 2
Run the following command in your shell:
php composer.phar update --no-dev
Note if you have Git installed on your system add the --prefer-source flag to the above command.
Step 3
Add the following line to the end of your "LocalSettings.php" file:
wfLoadExtension( 'SemanticScribunto' );
Usage
A description of the mw.smw library functions can be found here.
Contribution and support
If you want to contribute work to the project please subscribe to the developers mailing list and have a look at the contribution guideline.
- File an issue
- Submit a pull request
- Ask a question on the mailing list
Tests
This extension provides unit and integration tests that are run by GitHub Actions on every push, and
can also be executed locally using the composer phpunit command from the extension base directory.
The following commands are provided for running specific suites:
composer unitto run all unit testscomposer integrationto run all integration tests (which requires an active MediaWiki, DB connection)