Louis-Arnaud

Results 15 issues of Louis-Arnaud

As explained [here](https://github.com/lcobucci/jwt/issues/1065): should show examples: Ex `` JWT_SECRET_KEY=file:///app/config/jwt/private.pem JWT_PUBLIC_KEY=file:///app/config/jwt/public.pem ```

In this file src/Signer/OpenSSL.php, at the validationProcess : `return $this->validateKey(openssl_pkey_get_private($pem, $passphrase)); // also for the openssl_pkey_get_public` We should add in the documentation that the $pem have to be like this:...

First of all, I'd like to thank you for your work on this repository and your efforts in maintaining the certification question set. I wanted to let you know that...

First of all, I'd like to thank you for your work on this repository and your efforts in maintaining the certification question set. I wanted to let you know that...

This PR removes calls to `curl_close()`, which is deprecated in PHP 8.5 and has no effect anymore on CurlHandle objects since PHP 8.0. The behavior remains unchanged while preventing deprecation...

This PR removes unused imports and variables that are not referenced anywhere. Happy to adjust if needed.

This PR removes the deprecated LegacyTypeConverter::createType() usage and replaces it with Type::fromString(), which is the recommended API since Symfony 7.2. Only the safe and forward-compatible part of the LegacyTypeConverter is...

This PR adds explicit return types to several methods where they were previously implicit. Happy to adjust anything if needed.

This PR adds missing documentation about two Caddy directories required when running FrankenPHP inside Docker: - `/data/caddy` - `/config/caddy` (used to store autosave.json) These directories are not created by the...

This PR adds documentation for `Locale::isRightToLeft()`, which was introduced in PHP 8.5 but was not previously documented in the manual. The new section describes the method behavior, its reliance on...