dev-master
9999999-devUpdates Drupal.org Release History PHP Client
MIT
The Requires
- php >=5.4.0
- guzzlehttp/guzzle 6.*
by Alan Moreau
drupal drupal.org
Wallogit.com
2017 © Pedro Peláez
Updates Drupal.org Release History PHP Client
A simple PHP client to fetch releases from updates.drupal.org webservice., (*1)
Note that this library uses Guzzle as a third party library to handle HTTP requests., (*2)
Use composer, (*3)
composer require "drupal-sauron/drupal-release-history":"dev-master"
How to fetch module releases from a given core version?, (*4)
use Sauron\UpdatesDrupalOrg\ReleaseHistory\ReleaseHistoryClient;
$client = new ReleaseHistoryClient();
$releases = $client->getReleases('views', '7.x');
How to fetch all module releases?, (*5)
use Sauron\UpdatesDrupalOrg\ReleaseHistory\ReleaseHistoryClient;
$client = new ReleaseHistoryClient();
$releases = $client->getReleases('views', 'all');
Updates Drupal.org Release History PHP Client
MIT
drupal drupal.org