iserver-support / hosting-status
Automated hosting status checks for PHP applications and Linux hosting environments.
Package info
github.com/iserverseo-support/hosting-status
pkg:composer/iserver-support/hosting-status
1.0.0
2026-09-15 07:47 UTC
Requires
None
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
A lightweight PHP library for automated hosting status checks.
Features
- HTTP availability checks
- Disk usage checks
- PHP version checks
Installation
composer require iserver-support/hosting-status ## Usage ```php <?php require 'vendor/autoload.php'; use IserverSupport\HostingStatus\HostingStatus; $status = new HostingStatus(); print_r($status->checkHttp('https://example.com')); print_r($status->checkDiskUsage('/')); print_r($status->checkPhpVersion('8.1'));