Probably a little early, as Lando isn't there, yet, but...
When running bee dl with PHP 8.5 I get:
📝 Deprecated function: Function curl_close() is deprecated since 8.5, as it has no effect since PHP 8.0
In core we wrapped it in a conditional like that (core still supports PHP 7.1):
if (version_compare(PHP_VERSION, '8.0') < 0) {
curl_close($this->curlHandle);
}
Probably a little early, as Lando isn't there, yet, but...
When running
bee dlwith PHP 8.5 I get:In core we wrapped it in a conditional like that (core still supports PHP 7.1):