An open API service indexing awesome lists of open source software.

https://github.com/gingteam/amphp-runtime


https://github.com/gingteam/amphp-runtime

Last synced: 28 days ago
JSON representation

Awesome Lists containing this project

README

          

```php
// worker.php
dirname(__DIR__, 1),
'document_root' => __DIR__,
'port' => 8000,
];

$runtime = new Runtime($options);

[$app, $args] = $runtime->getResolver($app)->resolve();

$app = $app(...$args);

$runtime->getRunner($app)->run();
```