Tobias Nyholm

Results 91 issues of Tobias Nyholm

From #593, the idea was first to allow the user to configure php fpm by themselves. A directive like `include=/var/task/php/fpm/conf.d/*.conf` was added. That failed because the user had to specify...

enhancement

If we override `PHP_INI_SCAN_DIR` then the "special php.ini" files will not be used. Ie: https://github.com/brefphp/bref/blob/0.5.9/runtime/layers/fpm/php.ini

help wanted
good first issue
documentation

The [Symfony page](https://bref.sh/docs/frameworks/symfony.html) in the documentation should be updated with information about `Kernel.terminate`. We should tell the Symfony developer not to put work after the request is sent because the...

help wanted
documentation

I dont believe we have the best structure of our exceptions. The exception hierarchy currently look like this: ``` \InvalidArgumentException -- InvalidArgumentException \RuntimeException -- TransferException -- -- RequestException -- --...

lifecycle/keep-open

I want to share something I just learnt. Looking at [Github actions docs](https://help.github.com/en/actions/building-actions/about-actions#versioning-your-action) and the [actions/checkout action](https://github.com/actions/checkout/releases), we can see that one should move tags. Ie, create tags as we...

I created a milestone for version 1.0. I added a few issues that should be handled before we can tag a stable version. Btw, Stable != feature complete.

It would be nice if you could see what the latest version number is for a package in a list of packages. I let the image describe what I mean....

Feature
UX

Since we cannot use `setPerPage()` in 3.0, we need to be able to specify the `per_page` parameter without using a pager.

On 30+ places we have code like this: ```php if (!in_array($state, array('open', 'closed'))) { $state = 'open'; } ``` If the user misspelled the `$state` we should not help them....

enhancement

API classes should be immutable to avoid any unexpected behavior.

enhancement