Search by

iserver-support / hosting-status

iserverseo-support

Automated hosting status checks for PHP applications and Linux hosting environments.

Package info

github.com/iserverseo-support/hosting-status

Homepage

pkg:composer/iserver-support/hosting-status

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-09-15 07:47 UTC

This package is auto-updated.

Last update: 2026-09-15 07:53:51 UTC


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'));