drupal-sauron / drupal-release-history
Updates Drupal.org Release History PHP Client
dev-master
2017-10-17 14:18 UTC
Requires
- php: >=5.4.0
- guzzlehttp/guzzle: 6.*
This package is not auto-updated.
Last update: 2025-03-29 20:32:45 UTC
README
A simple PHP client to fetch releases from updates.drupal.org webservice.
Note that this library uses Guzzle as a third party library to handle HTTP requests.
INSTALL
Use composer
composer require "drupal-sauron/drupal-release-history":"dev-master"
HOW TO
How to fetch module releases from a given core version?
use Sauron\UpdatesDrupalOrg\ReleaseHistory\ReleaseHistoryClient;
$client = new ReleaseHistoryClient();
$releases = $client->getReleases('views', '7.x');
How to fetch all module releases?
use Sauron\UpdatesDrupalOrg\ReleaseHistory\ReleaseHistoryClient;
$client = new ReleaseHistoryClient();
$releases = $client->getReleases('views', 'all');