jovixv / native-ping
Native ping command without any dependencies. Through ICMP protocol.
Installs: 136
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jovixv/native-ping
Requires
- php: >=7.0
- ext-sockets: *
Requires (Dev)
This package is auto-updated.
Last update: 2025-10-11 22:19:48 UTC
README
Native ping command without any dependencies. Through ICMP protocol. Writed on PHP.
install
This package working only with composer 2+
Read more about our Composer 1.x deprecation policy.
composer require jovixv/native-ping
Usage Example
include '../vendor/autoload.php'; use jovixv\Ping\Ping; $test = new Ping(); $pingEntity = $test->ping('dataforseo.com', 500, 4, 32); var_dump($pingEntity);