2amigos/yii2-packagist-component Yii 2 Packagist API extension component.

extensioncomponentpackagist

Packagist API wrapper component extension for Yii2

Component extension wrapper for Packagist API

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require "2amigos/yii2-packagist-component" "*"

or add

"2amigos/yii2-packagist-component" : "*"

to the require section of your application's composer.json file.

Usage

use dosamigos\packagist\Packagist;

$api = new Packagist;

// get a package information  
$response = $api->package('yiisoft/yii2`)->getResponse();  
// dump response  
var_dump($response->body);

// get a filtered list  
$response = $api->all(['vendor' => '2amigos'])->getResponse();
if($response->isSuccessFul) {
    var_dump($response->body);
} else {
    var_dump($response->error);
}

// search packages
$response = $api->search('yii2')->getResponse();  
var_dump($response->body);  

2amigOS!

Web development has never been so fun! www.2amigos.us

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



0.1.1 is the latest of 2 releases



BSD-3-Clause license
Stats
1 github stars & 3 github forks
0 downloads in the last day
0 downloads in the last 30 days
5702 total downloads