eclogue / bulrush
Installs: 101
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/eclogue/bulrush
This package is auto-updated.
Last update: 2025-09-21 23:10:56 UTC
README
In the meanwhile I smile and I sing all alone. In the meanwhile the air is filling with the perfume of promise.
overview
php coroutine control flow. High performance yield handlers.
Install
`composer require eclogue/bulrush`
Usage
use Bulrush\Scheduler;
function gen () {
$url = 'https://github.com/eclogue/bulrush';
$response = yield file_get_contents($url);
return $response;
}
$scheduler = new Scheduler();
$scheduler->add(gen());
$scheduler->run();