podcastindex / podcastindex-php
There is no license information available for the latest version (1.0.3) of this package.
A PHP wrapper for the PodcastIndex API.
1.0.3
2020-09-11 08:06 UTC
Requires
- guzzlehttp/guzzle: ^6.3
This package is auto-updated.
Last update: 2026-03-11 20:28:45 UTC
README
A PHP wrapper for the PodcastIndex API.
Installation
Install the library using Composer. Please read the Composer Documentation if you are unfamiliar with Composer or dependency managers in general.
"require": { "podcastindex/podcastindex-php": "~1.0" }
Example usage
See the PodcastIndex Documention for all available methods.
$client = new PodcastIndex\Client([ 'app' => 'AppName', 'key' => $key, 'secret' => $secret ]); $searchResult = $client->search->byTerm('batman university')->json(); $podcasts = $client->podcasts->byFeedUrl('https://feeds.theincomparable.com/batmanuniversity')->json();
If an endpoint is not (yet) available in this library, you can always manually call $client->get('/full/endpoint/url/', $query) for a manual interface.