PHP code example of ray / compiler

1. Go to this page and download the library: Download ray/compiler 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/ */

    

ray / compiler example snippets


$injector = new Injector(new CarModule); // Ray.Di injector

$injector = new ScriptInjector($tmpDir, fn => new CarModule);

$compiler = new DiCompiler(new CarModule, $tmpDir);
$compiler->compile();

$compiler = new DiCompiler(new Module, $tmpDir);
$compiler->compile();
$compiler->dumpGraph();

$injector = new CompileInjector($tmpDir, $injectorContext);