Download the PHP package mediawiki/semantic-scribunto without Composer
On this page you can find all versions of the php package mediawiki/semantic-scribunto. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mediawiki/semantic-scribunto
More information about mediawiki/semantic-scribunto
Files in mediawiki/semantic-scribunto
Package semantic-scribunto
Short Description A Semantic Mediawiki extension to natively support the Scribunto extension
License GPL-2.0-or-later
Homepage https://www.semantic-mediawiki.org/wiki/Extension:SemanticScribunto
Informations about the package semantic-scribunto
Semantic Scribunto
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:
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": "~3.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 and is usually run by a continues integration platform
but can also be executed locally using the shortcut command composer phpunit 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)