定制 pbxg33k/vocadb 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

pbxg33k/vocadb

最新稳定版本:v0.1.3.3

Composer 安装命令:

composer require pbxg33k/vocadb

包简介

PHP API client for the VocaDB Public API (v1)

README 文档

README

Build Status Scrutinizer quality score Latest Stable Version Total Downloads Latest Unstable Version License

VocaDB API PHP Client

NOTE: This is an early alpha release which is still in development!

Installation

Using composer (recommended)

Simply run: composer require pbxg33k/vocadb dev-master

or add the following line to your require in composer.json: "pbxg33k/vocadb":"dev-master"

Without composer

  1. Download this repository as a zip file.
  2. Extract to a directory in your application
  3. Add files to your project
    • Map "pbxg33k/vocadb" to this directory if your autoloader is PSR-4 compatible
    • Include autoload.php to your project if either you don't have an autoloader or your autoloader is not PSR-4 compatible

How to use

The goal of this project is an easy integration with VocaDB's public API.

Before you can do anything you must load the client

	$client = new Pbxg33k\VocaDB\Client();

The client uses Guzzle to communicate with the API. You can pass any guzzle configuration in an array mapped to the 'guzzle' key.

Let's say for example your server is behind a proxy and cannot communicate directly with VocaDB's API. We can instruct Guzzle to use a proxy for communication by simply adding the proxy information to the constuctor.

	$guzzleConfig = [
		'request.options' => [
			'proxy' => 'tcp://localhost:80/'
		]
	];
	
	// We assign the $guzzleConfig to array('guzzle' => data) so we don't mix up the library's own config.
	$clientConfig = ['guzzle' => $guzzleConfig];

	$client = new Pbxg33k\VocaDB\Client($clientConfig);

From this point on you can communicate with the API by simply calling the client's methods.

	// Get Livetune's information
	$livetune = $client->artist->getByName('livetune');

	// $livetune is now an array with searchresults

TODO

  • Add all missing endpoints
    • PARTIALLY DONE Song
    • Entry
    • SongList
    • PARTIALLY DONE Album
    • User
    • PARTIALLY DONE Tag
    • PARTIALLY DONE Artist
    • PARTIALLY DONE ReleaseEvent
    • Discussion

统计信息

  • 总下载量: 1.66k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-05-05