csarcrr / invoicing-integration
This package aims to help integrations with invoicing systems
Fund package maintenance!
:vendor_name
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/csarcrr/invoicing-integration
Requires
- php: ^8.2
- illuminate/contracts: ^11.0||^12.0
- league/iso3166: ^4.3
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.8
- orchestra/testbench: ^10.3.0||^9.3.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- spatie/laravel-ray: ^1.35
- dev-main
- v0.2.0.x-dev
- v0.1.1.x-dev
- v0.1.1
- v0.1.0
- v0.0.4.x-dev
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-ci/pint-autofix-20385219035
- dev-ci/pint-autofix-20319977134
- dev-ci/pint-autofix-20319655913
- dev-ci/pint-autofix-20318434005
- dev-ci/pint-autofix-20317482843
- dev-ci/pint-autofix-20283671278
- dev-ci/pint-autofix-20199273429
- dev-fix-docs
- dev-ci/pint-autofix-20199143833
- dev-ci/pint-autofix-20199080449
- dev-ci/pint-autofix-20199080094
- dev-ci/pint-autofix-20198958074
- dev-ci/pint-autofix-20198939679
This package is auto-updated.
Last update: 2025-12-26 22:38:11 UTC
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.