iceithq/accounting-php-client
最新稳定版本:v0.1.0
Composer 安装命令:
composer require iceithq/accounting-php-client
包简介
PHP client library for connecting to the ICE Accounting System API.
README 文档
README
PHP client library for connecting to the ICEIT Accounting System API.
Provides simple methods to access customers, companies, sales orders, invoices, and other accounting-related data.
Installation
Install via Composer:
composer require iceithq/accounting-php-client
If you are using a private repository, make sure to add it under the repositories section in your composer.json.
Usage
<?php require __DIR__ . '/vendor/autoload.php'; use Iceithq\Accounting\AccountingClient; // Initialize client $client = new AccountingClient('https://accounting.iceithq.com', 'your-api-key'); $response = $client->login('your_username', 'your_password'); $token = $response->token; // Fetch customers $customers = $client->get_customers($token); print_r($customers); // Fetch companies $companies = $client->get_companies($token); print_r($companies);
Features
- Connect to ICE Accounting System
- Fetch customers and companies
- (Upcoming) Create sales orders
- (Upcoming) Fetch invoices
Requirements
- PHP 7.4 or higher
- Composer
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-04-27