csarcrr/invoicing-integration
最新稳定版本:v0.1.1
Composer 安装命令:
composer require csarcrr/invoicing-integration
包简介
This package aims to help integrations with invoicing systems
README 文档
README
About
Invoicing Integration is an agregator of several invoicing softwares in Portugal. We aim to help you use these softwares without the assle of learning every nuance of their API.
Current Features
For a full list of features and capabilities, please see FEATURES.md.
Usage
For more in-depth usage details and examples, please visit the official documentation.
Installation
You can install the package via composer:
composer require csarcrr/invoicing-integration
You can publish the config file with:
php artisan vendor:publish --tag="invoicing-integration-config"
Example
<?php use CsarCrr\InvoicingIntegration\InvoicingIntegration; use CsarCrr\InvoicingIntegration\Invoice\InvoiceItem; $integration = Invoice::create(); $item = new InvoiceItem(reference: 'SKU-001', quantity: 2); $item->setPrice(1000); $item->setDescription('Product Description'); $integration->addItem($item); $invoiceData = $integration->invoice();
Testing
composer test
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 40
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-06