1. Go to this page and download the library: Download dhii/module-interface library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dhii / module-interface example snippets
// module.php
use Dhii\Modular\Module\ModuleInterface;
use Interop\Container\ServiceProviderInterface;
use Psr\Container\ContainerInterface;
return function () {
return new class () implements ModuleInterface {
/**
* Declares services of this module.
*
* @return ServiceProviderInterface The service provider with the factories and extensions of this module.
*/
public function setup() : ServiceProviderInterface
{
return new class () implements ServiceProviderInterface
{
/**
* Only the factory of the last module in load order is applied.
*
* @return array|callable[] A map of service names to service definitions.
*/
public function getFactories()
{
return [
// A factory always gets one parameter: the container.
'my_module/my_service' => function (ContainerInterface $c) {
// Create and return your service instance
return new MyService();
},
];
}
/**
* All extensions are always applied, in load order.
*
* @return array|callable[] A map of service names to extensions.
*/
public function getExtensions()
{
return [
// An extension gets an additional parameter:
// the value returned by the factory or the previously applied extensions.
'other_module/other_service' => function (
ContainerInterface $c,
OtherServiceInterface $previous
): OtherServiceInterface {
// Perhaps decorate $previous and return the decorator
return new MyDecorator($previous);
},
];
}
};
}
/**
* Consumes services of this and other modules.
*
* @param ContainerInterface $c A container with the services of all modules.
*/
public function run(ContainerInterface $c): void
{
$myService = $c->get('my_module/my_service');
$myService->doSomething();
}
};
};
// bootstrap.php
use Dhii\Modular\Module\ModuleInterface;
use Interop\Container\ServiceProviderInterface;
use Dhii\Container\CompositeCachingServiceProvider;
use Dhii\Container\DelegatingContainer;
use Dhii\Container\CachingContainer;
(function ($file) {
$baseDir = dirname($file);
$modulesDir = "$baseDir/modules";
// Order is important!
$moduleNames = [
'me/my_module',
'me/my_other_module',
];
// Create and load all modules
/* @var $modules ModuleInterface[] */
$modules = [];
foreach ($moduleNames as $moduleName) {
$moduleFactory =
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.