Ben Faerber

Results 5 comments of Ben Faerber

I haven't tested `php-toml` personally but looking at the TOML website, it is only compliant with v0.4.0 compliant of TOML where most of the other implementations work with version 1.0.0....

How do you think the errors should be grouped? Maybe it could a header per package and then group them by version beneath the header.

@LucasPickering I'm working on this, here's my fork: [https://github.com/benfaerber/slumber/tree/add-http-file-support](https://github.com/benfaerber/slumber/tree/add-http-file-support) I'm planning on using nom to parse the basic format and then httparse to parse the actual request portion. I think...

I always create a method called `User::auth()` on my user to get proper hints. ```php class User { public static function auth(): self { $user = auth()->user(); throw_if(! $user, Exception::class,...

> > > I always create a method called `User::auth()` on my user to get proper hints. > > > > > > This might be interesting to add to...