Closed
Description
With PHP 8.2 the test suite actually works, but reports half of the tests failing, since they have deprecation notices like this:
Deprecated: Creation of dynamic property V8Js::$foo is deprecated
... because of this: https://php.watch/versions/8.2/dynamic-properties-deprecated
It's likely best to tag all V8Js classes with #[AllowDynamicProperties]
attribute to omit this notice.
Need to find out how to programatically set this attribute in C++ code 🙂