jeekup / phpmef
PHPMEF 来自phpmef/phpmef添加了Jasp.php
0.1
2018-06-05 08:10 UTC
Requires
None
Requires (Dev)
- phpunit/phpunit: 3.x
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-09-03 11:12:22 UTC
README
PHPMEF is a PHP port of the .NET Managed Extensibility Framework, allowing easy composition and extensibility in an application using the Inversion of Control principle and 2 easy keywords: @export and @import.
Downloads
Latest download can be found under releases.
Hello, PHPMEF!
Here's a simple example on how PHPMEF can be used:
class HelloWorld {
/**
* @import-many MessageToSay
*/
public $Messages;
public function sayIt() {
echo implode(', ', $this->Messages);
}
}
class Hello {
/**
* @export MessageToSay
*/
public $HelloMessage = 'Hello';
}
class World {
/**
* @export MessageToSay
*/
public $WorldMessage = 'World!';
}
$helloWorld = new HelloWorld();
$compositionInitializer = new MEF_CompositionInitializer(new MEF_Container_Default());
$compositionInitializer->satisfyImports($helloWorld);
$helloWorld->sayIt(); // Hello, World!
Check the wiki for more information.
感谢:phpmef/phpmef ,该包在phpmef/phpmef的情况下添加了Jasp.php