Results 90 issues of Vano Devium

How to use: ``` public function someAction() { $archive = Zip::createTemporary(); $archive->addFromString('file1.txt', 'file1 content'); $archive->addFromString('file2.txt', 'file2 content'); return response()->download($archive->closeTemporary()); } ``` > or simple `$archive->close()` and then use `$archive->getTemporaryFilePath()`

You can now safely create nested route groups ``` $api->group('/1', function ($api) { $api->get('/1', function () { return '1'; }); $api->group('/2', function ($api) { $api->get('/2', function () { return '2';...

# Breaking changes Closes #13 Useful for headers, status code and other purposes. `$response` is an instance of `\Workerman\Protocols\Http\Response` Example of JSON endpoint: ``` $api->get('/json', function ($request, $response) { return...

Useful if you display path parameters in your responses.

Useful for variable functions. Example: ``` $app->get('/a', $handlerA) ->get('/b', $handlerB) ->post('/c', $handlerC); ```

Let's imagine that it's more convenient for me to use **frankenphp** as a stand-alone binary. Therefore, it is downloaded to my working folder. It would be super handy if there...

enhancement

It would be nice to show in the README an example of how to correctly start your image using docker-compose, as well as commands for init, adding/revoking a new user,...

I think it would be very useful and convenient to use. But, unfortunately, I don't know if it will work like that. If you have objections or clarifications, always happy...