Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

2amigos/yii2-packagist-component

Repository files navigation

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

About

Yii 2 Packagist API extension component

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages