api-clients/pi-hole
Async first Pi-Hole API Client for PHP 7
Maintainers
Requires
- php: ^7.0
- api-clients/client-services: ^1.3
- api-clients/foundation: ^1.0
- api-clients/middleware-http-exceptions: ^2.0
- api-clients/middleware-json: ^3.0
- api-clients/middleware-user-agent: ^2.0
- api-clients/rx: ^2.2
- api-clients/transport: ^3.0
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 0b598059c324a28963e3665615425d686c8fcd88
- Cees-Jan Kiewiet <ceesjank.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-15 10:57:03 UTC
README
👁 Build Status
👁 Latest Stable Version
👁 Total Downloads
👁 Code Coverage
👁 License
👁 PHP 7 ready
Install
To install via Composer, use the command below, it will automatically detect the latest version and bind it with ^.
composer require api-clients/pi-hole
Usage
The client needs two things, the ReactPHP event loop, and your PI Hole's hostname. Once you created the client you can call the overview method to get to stats as shown on the dashboard.
use ApiClients\Client\PiHole\AsyncClient; use ApiClients\Client\PiHole\Resource\OverviewInterface; use React\EventLoop\Factory; use function ApiClients\Foundation\resource_pretty_print; require dirname(__DIR__) . DIRECTORY_SEPARATOR . 'vendor/autoload.php'; $loop = Factory::create(); $client = AsyncClient::create($loop, 'pi-hole.local'); $client->overview()->done(function (OverviewInterface $overview) { resource_pretty_print($overview); }); $loop->run();
Examples
The examples directory is filled with all kinds of examples for this package.
License
The MIT License (MIT)
Copyright (c) 2017 Cees-Jan Kiewiet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
