Evert Pot

Results 252 comments of Evert Pot

This is still something that interesting for us, but we haven't had time implementing it yet.

So the problem here is that curl actually doesn't have an easy way for us to just access the stream resource, as far as I can tell. The only way...

Well, it would be really nice if we can do something like : ``` php $request = "..."; $response = $client->send($request); stream_copy_to_stream('php://output', $response->getBodyAsStream()); ``` This should: 1. Use real stream...

The problem with using the temporary stream is that it only partially solve the goals. It does not: 1. Avoid a cache/buffer. The entire response will be stored in memory...

It's better than nothing though.

> right, but thats how streaming works nevertheless... php://memory seems like a good fit for that. That's not really true... If I _didn't_ use curl and used PHP's built-in HTTP...

I'll definitely look into it. My preference would go for something lightweight, so maybe artax is that =) In the future I want to kick of sabre/davclient again, so that...

The nice thing about Slim is that it's a PSR-7-based microframework. Silex is another option, but I feel that Silex and the Symfony ecosystem has stagnated a bit. It's also...

I actually made a start with this, but Slim 3 is not at all like Slim 2. They've made it a lot harder to do simple stuff. My main goal...