承接 mihaikelemen/superset-php-client 相关项目开发

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

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

mihaikelemen/superset-php-client

最新稳定版本:v1.1.5

Composer 安装命令:

composer require mihaikelemen/superset-php-client

包简介

PHP client library for Apache Superset API

README 文档

README

PHP Version Latest Version CI codecov License

A PHP client library for interacting with the Apache Superset API. This library provides an easy-to-use interface for authenticating, retrieving dashboards, and managing embedded content.

Installation

Install the library using Composer:

composer require mihaikelemen/apache-superset-php-client

Requirements

  • PHP 8.4 or higher
  • ext-curl
  • ext-json
  • GuzzleHTTP
  • Symfony Serializer

Quick Start

<?php

require 'vendor/autoload.php';

use Superset\SupersetFactory;

// Create an authenticated client
$superset = SupersetFactory::createAuthenticated(
    baseUrl: 'https://your-superset-instance.com',
    username: 'your-username',
    password: 'your-password'
);

// Retrieve dashboards
$dashboards = $superset->dashboard()->list();

// Get a specific dashboard
$dashboard = $superset->dashboard()->get('my-dashboard-slug');

Documentation

For detailed usage instructions, authentication methods, and advanced configuration options, please refer to the USAGE.md.

Features

  • Multiple authentication methods (username/password, bearer token)
  • Dashboard operations (list, retrieve, embed)
  • Guest token generation for embedded dashboards
  • CSRF token management
  • Direct API access for all HTTP methods
  • Configurable HTTP client settings
  • Logging support for debugging and monitoring

Contributing

Contributions are welcome! Please refer to the CONTRIBUTING.md file for guidelines.

License

This library is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-10-27