├── .php_cs.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpstan-baseline.neon ├── phpstan.neon.dist └── src ├── CpuLoad.php ├── CpuLoadCheck.php └── Exceptions └── CouldNotMeasureCpuLoad.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/CpuLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/src/CpuLoad.php -------------------------------------------------------------------------------- /src/CpuLoadCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/src/CpuLoadCheck.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotMeasureCpuLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/cpu-load-health-check/HEAD/src/Exceptions/CouldNotMeasureCpuLoad.php --------------------------------------------------------------------------------