Checks
PHP Version Check
Overview
This check has two parts, a client side part, and a server side part. You application sends the PHP version from your server in the report. Our server compares that version with the latest data from the php.net releases.
Using this check
This check is turned on by default.
You can update your FireTowerServiceProvider
class to include the check and any options.
<?php
//...
class FireTowerServiceProvider extends ServiceProvider
{
public function boot(): void
{
//...
FireTower::checks(function () {
return [
//...
PhpVersionCheck::check(),
];
});
}
}