fix(tia): include the PHP minor version in the fingerprint (#1860)

This commit is contained in:
Lazizbek Ergashev
2026-08-13 20:16:15 +05:00
committed by GitHub
parent 2e58918201
commit 9b36f44b3e
+1 -1
View File
@@ -40,7 +40,7 @@ final readonly class Fingerprint
'js_config' => self::jsConfigHash($projectRoot),
],
'environmental' => [
'php_minor' => PHP_MAJOR_VERSION,
'php_minor' => PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION,
],
];