jeekup/phpmef

PHPMEF 来自phpmef/phpmef添加了Jasp.php

0.1 2018-06-05 08:10 UTC

This package is not auto-updated.

Last update: 2024-09-19 01:20:16 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