Michal Špaček

Results 13 issues of Michal Špaček

Making a note so I don't forget See this [tweet](https://twitter.com/solardiz/status/1148906054866087936) & [archive](https://web.archive.org/web/20190804004301/https://twitter.com/solardiz/status/1148906054866087936)

OpenSSL 1.1.1 has added a new option to `req` to specify SAN (https://github.com/openssl/openssl/issues/3311): ``` -addext "subjectAltName = DNS:foo.co.uk" \ ``` Let's use that instead of creating a new temp file...

Given a configuration like this for example: ```neon disallowedFunctionCalls: - function: 'pcntl_*()' allowIn: - vendor/foo/bar/Baz.php ``` when any `pcntl` call is not found in `vendor/foo/bar/Baz.php`, report error and suggest removing...

enhancement

Packagist [`phpgangsta/googleauthenticator`](https://packagist.org/packages/phpgangsta/googleauthenticator) is missing a 1.0.1 release. After asking the author to add it, I got this reply: > I would like to, but someone else took the packagist namespace...

https://wiki.php.net/rfc/dynamic_class_constant_fetch Fix #241 This should have been done in #217 already.

Couldn't find the string on the page, and now I would.

When a variable is created in `catch (Exception $e)` it always seems to be of mixed type, but later, `@psalm-trace` reports correct type, but it cannot be passed to a...

Adds `string` and `DateTimeInterface` back to `setCookie` `$expire` param . This is a fix for an undocumented (and possibly unwanted) BC break in 3.3.0. In version 3.2.x and older, this...

This updates and cleans up the CI tests, main changes: - Run tests on PHP 8.3 too - Actually run tests on the selected PHP version, the version matrix was...

Update PHPStan level to 9/max with [bleeding edge](https://phpstan.org/blog/what-is-bleeding-edge). You can't go any higher :-) #172 inspired me to do this, to make sure the types are correct throughout the lib....