rjsmelo / fiware-poi-client
PHP Client Library for POI Data Provider Open API Specification
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/rjsmelo/fiware-poi-client
Requires
- php: >=5.4.0
- guzzlehttp/guzzle: ~5.0
Requires (Dev)
- phpunit/phpunit: ~4.4
This package is not auto-updated.
Last update: 2025-10-26 01:06:29 UTC
README
PHP Client Library for POI Data Provider Open API Specification
Quick Example
<?php require 'vendor/autoload.php'; use Rjsmelo\Fiware\Poi\Client; use Rjsmelo\Fiware\Poi\Query\PoiListQuery; $client = new Client('http://localhost:8080'); $poiListSearch = new PoiListQuery('ae01d34a-d0c1-4134-9107-71814b4805af'); $poiList = $client->getPoiList($poiListSearch);