NoiseByNorthwest / php-spx

A simple & straight-to-the-point PHP profiling extension with its built-in web UI
GNU General Public License v3.0
2.14k stars 84 forks source link

Add basic PHP 8.0 support #142

Closed NoiseByNorthwest closed 4 years ago

NoiseByNorthwest commented 4 years ago

This patch takes into account the PHP 8.0 internal API changes in order to bring to php-spx a minimal / working PHP 8.0 support.

The PHP 8.0 support can indeed be improved, especially regarding some new features like the JIT compiler, via the use of the new observer API which can replace the legacy, hook-based, one for most use cases.

More details about the new observer API here: https://github.com/php/php-src/pull/5582