multinexo/php-afip-ws
最新稳定版本:2.0.11
Composer 安装命令:
composer require multinexo/php-afip-ws
包简介
Librería PHP para interactuar con el webservice de AFIP (Argentina -> factura electrónica).
README 文档
README
Installation
composer require multinexo/php-afip-ws
Usage
/** Invoice with items */ $company_cuit = '20301112227'; $invoice = new AfipInvoice(); $invoice->addAfipDetail( (new AfipDetail()) ->setQty(2) ->setItemCode('P0001') ->setDescription('Cool cooler') ->setItemNet(50) ->setIvaConditionCode(IvaConditionCodes::IVA_21) ->setItemNet(55.25) ); $data = $invoice->getDataFromAfip( $this->getConfig($company_cuit) ); var_dump($data);
Documentation
For more information, visit official documentation.
Testing
docker run -it --rm --name php73 -e PHP_EXTENSIONS="" -v "$PWD":/usr/src/app thecodingmachine/php:7.3-v4-cli bash composer coverage
统计信息
- 总下载量: 9.86k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-03-25