This library provides basic access to the MediaWiki Action API. This library features simple methods allowing you to login, logout and do both GET and POST requests. This library should work with most if not all MediaWiki versions due to its simplicity.
You can find the fill documentation at https://addwiki.github.io/mediawiki-api-base/
A quick example can be found below:
use \Mediawiki\Api\MediawikiApi;
$api = MediawikiApi::newFromPage( 'https://en.wikipedia.org/wiki/Berlin' );
$api->login( new ApiUser( 'username', 'password' ) );
$purgeRequest = FluentRequest::factory()->setAction( 'purge' )->setParam( 'titles', 'Berlin' );
$api->postRequest( $purgeRequest );
Run the MediaWiki test site:
docker-compose -f docker-compose-ci.yml up -d
Run the tests:
composer phpunit-integration
Destroy the site that was used for testing:
docker-compose -f docker-compose-ci.yml down --volumes