Skip to content

Commit b051fc4

Browse files
committed
init update
1 parent a8ac130 commit b051fc4

3 files changed

Lines changed: 3594 additions & 1 deletion

File tree

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ Ensure you have PHP 8.1+ installed. You can install the package directly from Pa
2323
composer require check-hostcc/check-host-api-php
2424
```
2525

26+
### Manual Installation
27+
28+
If you prefer not to use Composer, you can download the source code and require the class files directly:
29+
30+
```php
31+
require_once '/path/to/src/Exceptions/CheckHostException.php';
32+
require_once '/path/to/src/CheckHost.php';
33+
```
34+
2635
## Quickstart
2736

2837
```php
@@ -50,7 +59,7 @@ This library supports both minimal invocations and detailed, options-rich reques
5059
### Common Options Used in Examples
5160
- `region`: Array of Nodes or ISO Country Codes (e.g. `['DE', 'NL']`) or Continents (e.g. `['EU']`).
5261
- `repeatchecks`: Number of repeated probes to perform per node for higher accuracy (Live Check).
53-
- `timeout`: Connection timeout threshold in seconds (Currently disabled on Check-host backend, but supported).
62+
- `timeout`: Connection timeout threshold in seconds. Supported by methods where a timeout is applicable (e.g., HTTP, TCP).
5463

5564
---
5665

0 commit comments

Comments
 (0)