Clone this repo:
  1. e1257a0 build: Updating mediawiki/mediawiki-codesniffer to 43.0.0 by libraryupgrader · 5 weeks ago master
  2. 700ba1f Improve performance of very hot methods by thiemowmde · 7 months ago
  3. f0b1335 build: Updating mediawiki/mediawiki-phan-config to 0.14.0 by libraryupgrader · 2 months ago
  4. d056e76 Add return type hint to example functions in README by Umherirrender · 3 months ago
  5. 126c878 build: Upgrade phpunit to 9.6.16 by James D. Forrester · 3 months ago

Latest Stable Version License

Services

A PSR-11-compliant services framework. Services are created by instantiators (callables), which are usually defined in separate wiring files.

Usage

$services = new ServiceContainer();

$services->defineService(
    'MyService',
    static function ( ServiceContainer $services ): MyService {
        return new MyService();
    }
);

$services->loadWiringFiles( [
    'path/to/ServiceWiring.php',
] );

Where ServiceWiring.php looks like this:

return [

    'MyOtherService' => static function ( ServiceContainer $services ): MyOtherService {
        return new MyOtherService( $services->get( 'MyService' ) );
    },

    // ...

];

Each instantiator receives the service container as the first argument, from which it may retrieve further services as needed. Additional arguments for each instantiator may be specified when constructing the ServiceContainer.

Custom subclasses of ServiceContainer may offer easier access to certain services:

class MyServiceContainer extends ServiceContainer {

    public function getMyService(): MyService {
        return $this->get( 'MyService' );
    }

    public function getMyOtherService(): MyOtherService {
        return $this->get( 'MyOtherService' );
    }

}

// ServiceWiring.php
return [

    'MyOtherService' => static function ( MyServiceContainer $services ): MyOtherService {
        return new MyOtherService( $services->getMyService() );
    },

];

Running tests

composer install --prefer-dist
composer test

History

This library was first introduced in MediaWiki 1.27 (I3c25c0ac17). It was split out of the MediaWiki codebase and published as an independent library during the MediaWiki 1.33 and MediaWiki 1.34 development cycles.