Ayesh Karunaratne
Ayesh Karunaratne
Hi Niklas, I use acme-client extensively, in many of my servers, and couldn't be happier with it. Thanks for the awesome work you have put in! I noticed some of...
Cont. from https://github.com/Ayesh/acme-client/commit/5541a2927f59c6a33bad387992f19af61669b7a9#commitcomment-21383572 Can we make Certificate::pemToDer and Certificate::derToPem methods support public keys, private keys, PGP keys, certificate requests, etc please? The derToPem method can be a bit troublesome to...
There are few methods in the `Parsedown` class that do not explicitly declare visibility. Protected methods are declared as such, but I would like to propose that we mark all...
In PHP 8.2, using the [Base64, Uuencode, QPrint, and HTML Entity encodings are deprecated](https://php.watch/versions/8.2/mbstring-qprint-base64-uuencode-html-entities-deprecated#html) There is one usage of the deprecated `HTML-ENTITIES` Mbstring encoder in `\DiDom\Encoder::convertToHtmlEntities()`, which relies on the...
Thank you so much for the awesome work in this project. I was in search for a simple blogging platform, and this fits right well! Thanks again for this cool...
Thanks for the great effort in bringing an excellent extension! I would like to ask if there is any Windows support planned. - Ayesh.
# Summary PHP 8.2 deprecates `"${var}"` string interpolation pattern. This fixes all three of such occurrences in `braintree/braintree_php` package. - [PHP 8.2: `${var}` string interpolation deprecated](https://php.watch/versions/8.2/${var}-string-interpolation-deprecated) - [RFC](https://wiki.php.net/rfc/deprecate_dollar_brace_string_interpolation) # Checklist...
Polyfill taken from [PHP.Watch - PHP 8.2: New `ini_parse_quantity` function](https://php.watch/versions/8.2/ini_parse_quantity#polyfill) Tries to mimic the native warnings with `E_USER_WARNING` errors, and overflow/underflow conditions by inspecting the int to float type change.
PHP 8.1 adds a [new class `CURLStringFile`](https://php.watch/versions/8.1/CURLStringFile), that works similar to `CURLFile`, but does not require a _path_ to a file, and accepts a string of file contents instead. This...
PHP 8.1 adds a new `CURLStringFile`, that makes it possible to upload a file directly from a variable. With existing `CURLFile`, it is required to specify a path or a...