承接 chrgriffin/wave-api 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

chrgriffin/wave-api

Composer 安装命令:

composer require chrgriffin/wave-api

包简介

Simple PHP client to utilize Webaim's WAVE API.

README 文档

README

wave-api is a strongly typed package for interacting with Webaim's WAVE API.

Requirements

wave-api requires PHP 7.1 or greater. You will also need to create an account with the WAVE API in order to use it.

Installation

You can install via composer:

composer install chrgriffin/wave-api

Usage

Basic Usage

Using the client is extremely simple:

require_once './vendor/autoload.php';

use ChrGriffin\WaveApi\Client as WaveClient;

$wave = new WaveClient('my-api-key');
$response = $wave->analyze('my-url');

Additional Parameters

If you want to specify optional parameters, such as viewportwidth, reporttype, or format, there are multiple ways to do so.

Firstly, you can specify any additional parameters when instantiating the client:

$wave = new WaveClient('my-api-key', [
    'viewportwidth' => 1440,
    'reporttype'    => 2,
    'format'        => 'json'
]);

Secondly, you can specify any additional parameters when making the request:

$response = $wave->analyze('my-url', [
    'viewportwidth' => 1440,
    'reporttype'    => 2,
    'format'        => 'json'
]);

Or thirdly, you can chain multiple setters:

$wave->setViewportwidth(1440)
    ->setReporttype(2)
    ->setFormat('json')
    ->analyze('my-url);

Response Format

The format parameter has two valid options: json and xml. Setting this parameter will change the response type:

  • if format is json, then $wave->analyze() will return a \stdClass object
  • if format is xml, then $wave->analyze() will return a \SimpleXMLElement object

Documentation

Available Methods

  • getClient() : GuzzleHttp\Client (by default)
  • setClient($client) : ChrGriffin\WaveApi\Client
    • $client: Replace the default GuzzleHttp client with your own.
  • getKey() : string
  • setKey(string $key) : ChrGriffin\WaveApi\Client
    • $key: Your WAVE API key.
  • getFormat() : string (json by default)
  • setFormat(string $format) : ChrGriffin\WaveApi\Client
    • $format: The desired report format. An exception will be thrown if the value is neither json nor xml.
  • getViewportwidth() : int
  • setViewportwidth(int $viewportwidth) : ChrGriffin\WaveApi\Client
    • $viewportwidth: The desired viewport width when analyzing.
  • getEvaldelay() : int
  • setEvaldelay(int $evaldelay) : ChrGriffin\WaveApi\Client
    • $evaldelay: The desired number of milliseconds to wait before analyzing.
  • getReporttype() : int
  • setReporttype(int $reporttype) : ChrGriffin\WaveApi\Client
    • $reporttype: The desired report type. An exception will be thrown if the value is none of 1, 2, or 3.
  • getUsername() : string
  • setUsername(string $username) : ChrGriffin\WaveApi\Client
    • $username: The desired username for basic HTTP authentication to the given URL.
  • getPassword() : string
  • setPassword(string $password) : ChrGriffin\WaveApi\Client
    • $password: The desired password for basic HTTP authentication to the given URL.
  • getResponseContents() : null|\stdClass|\SimpleXMLElement _(will be null before a request is made)
  • setParams(array $params) : ChrGriffin\WaveApi\Client
    • $params: An associative array of any or all paramaters. Valid paramaters:
      • format : string (must be one of json or xml)
      • viewportwidth : int
      • evaldelay : int
      • reporttype : int (must be one of 1, 2, or 3)
      • username : string
      • password : string
  • analyze(string $url, array $params = []) : \stdClass|\SimpleXMLElement
    • $url: The desired URL to analyze.
    • $params: An associative array of any or all paramaters. Valid paramaters:
      • format : string (must be one of json or xml)
      • viewportwidth : int
      • evaldelay : int
      • reporttype : int (must be one of 1, 2, or 3)
      • username : string
      • password : string

Exceptions

  • A \TypeError will be thrown whenever an invalidly typed parameter is passed to a method (refer to the above documentation for valid types).
  • A ChrGriffin\WaveApi\Exceptions\InvalidArgumentException (extends \InvalidArgumentException)will be thrown in the following instances:
    • Trying to set format to an invalid value (not one of xml or json).
    • Trying to set reporttype to an invalid value (not one of 1, 2, or 3).
    • Trying to set a parameter that doesn't exist.
  • A ChrGriffin\WaveApi\Exceptions\ResponseException will be thrown when the WAVE API responds with an error. The error, if provided, will be the exception's message.

chrgriffin/wave-api 适用场景与选型建议

chrgriffin/wave-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 2, 最近一次更新时间为 2019 年 02 月 07 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 chrgriffin/wave-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 chrgriffin/wave-api 我们能提供哪些服务?
定制开发 / 二次开发

基于 chrgriffin/wave-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-02-07