Co/run PHP Serverless Platform
PHP Serverless Platform with Async I/O and Coroutine.
PHP Serverless Runtime
Run your PHP Frameworks with Serverless stack. Deploy on AWS Lamda, GCP Cloud Run or other Serverless cloud.
Coroutine-Powered
Build your high performance PHP Functions with Coroutine, Async I/O and run it with Corun.io
Performant and Saving
Run your PHP Appliation on scalable cloud and only pay for the resources execute your function. Don't pay for devops time.
# Co\run your PHP Coroutine Function
<?php
Co\run(function() {
$client = new Co\HTTP\Client('corun.io', 443, true);
$client->get('/');
print_r($client);
$client->close();
});