├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── autofix.sh ├── boxfile.yml ├── composer.json ├── composer.lock ├── config └── config.php ├── phpunit.xml ├── phpunit.xml.bak ├── resources ├── .tmp │ └── .gitignore ├── ci │ ├── .php-csniffer.xml │ ├── php-cpd.sh │ ├── php-cs-fixer.sh │ ├── php-csniffer-fix.sh │ ├── php-csniffer.sh │ ├── php-md.sh │ ├── php-mnd.sh │ └── tools │ │ ├── find-double-spaces.sh │ │ └── php-cs-fixer.sh └── rules │ ├── php-cs-fixer.php │ ├── phpmd.xml │ ├── phpstan.src.neon │ └── phpstan.tests.neon ├── src ├── AfipInvoices │ ├── AfipDetail.php │ ├── AfipDetailTranslator.php │ ├── AfipInvoice.php │ └── AfipInvoiceTranslator.php ├── AfipValues │ ├── IdCodes.php │ ├── IvaConditionCodes.php │ ├── ReceiptCodes.php │ └── UnitSizeCodes.php ├── AfipWebServiceInterface.php ├── Auth │ └── Authentication.php ├── Exceptions │ ├── AfipUnavailableServiceException.php │ ├── AfipUnhandledException.php │ ├── ManejadorResultados.php │ ├── ValidationException.php │ └── WsException.php ├── Models │ ├── AfipConfig.php │ ├── AfipWebService.php │ ├── CSRFile.php │ ├── GeneralHelper.php │ ├── InvoiceInterface.php │ ├── InvoiceWebService.php │ ├── Log.php │ └── Validaciones.php ├── Objects │ ├── AssociatedDocumentObject.php │ ├── CondicionIvaEnum.php │ ├── CreditOrDebitObject.php │ ├── FiscalDocumentDto.php │ ├── InvoiceObject.php │ ├── InvoiceResultObject.php │ ├── Invoices │ │ └── ConceptEnum.php │ ├── ItemCodigoUnidadMedidaEnum.php │ ├── ItemObject.php │ ├── SubtotalesIvaObject.php │ └── WebServiceEnum.php ├── WSAA │ ├── Wsaa.php │ └── wsaa.wsdl ├── WSFE │ ├── Wsfe.php │ └── wsfe.wsdl ├── WSMTXCA │ ├── AfipResult.php │ ├── WsParametros.php │ ├── Wsmtxca.php │ ├── WsmtxcaFuncionesInternas.php │ └── wsmtxca.wsdl └── WSPN3 │ ├── Wspn3.php │ └── wspn3.wsdl └── tests ├── AfipInvoices ├── AfipInvoiceTest.php └── AfipInvoiceTranslatorTest.php ├── AfipTraitTest.php ├── InvoiceTestTrait.php ├── ModelTests └── CsrFileTest.php ├── TestAfipCase.php ├── WsfeTests └── WsfeTest.php ├── WsmtxcaTests └── WsmtxcaTest.php ├── Wspn3Tests └── Wspn3Test.php └── resources ├── .gitignore ├── certificate-testing.crt └── privateKey /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.md export-ignore 2 | composer.lock -diff -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/README.md -------------------------------------------------------------------------------- /autofix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/autofix.sh -------------------------------------------------------------------------------- /boxfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/boxfile.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/composer.lock -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/config/config.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/phpunit.xml.bak -------------------------------------------------------------------------------- /resources/.tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/ci/.php-csniffer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/.php-csniffer.xml -------------------------------------------------------------------------------- /resources/ci/php-cpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/php-cpd.sh -------------------------------------------------------------------------------- /resources/ci/php-cs-fixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/php-cs-fixer.sh -------------------------------------------------------------------------------- /resources/ci/php-csniffer-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/php-csniffer-fix.sh -------------------------------------------------------------------------------- /resources/ci/php-csniffer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/php-csniffer.sh -------------------------------------------------------------------------------- /resources/ci/php-md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/php-md.sh -------------------------------------------------------------------------------- /resources/ci/php-mnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/php-mnd.sh -------------------------------------------------------------------------------- /resources/ci/tools/find-double-spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/tools/find-double-spaces.sh -------------------------------------------------------------------------------- /resources/ci/tools/php-cs-fixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/ci/tools/php-cs-fixer.sh -------------------------------------------------------------------------------- /resources/rules/php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/rules/php-cs-fixer.php -------------------------------------------------------------------------------- /resources/rules/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/rules/phpmd.xml -------------------------------------------------------------------------------- /resources/rules/phpstan.src.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/rules/phpstan.src.neon -------------------------------------------------------------------------------- /resources/rules/phpstan.tests.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/resources/rules/phpstan.tests.neon -------------------------------------------------------------------------------- /src/AfipInvoices/AfipDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipInvoices/AfipDetail.php -------------------------------------------------------------------------------- /src/AfipInvoices/AfipDetailTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipInvoices/AfipDetailTranslator.php -------------------------------------------------------------------------------- /src/AfipInvoices/AfipInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipInvoices/AfipInvoice.php -------------------------------------------------------------------------------- /src/AfipInvoices/AfipInvoiceTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipInvoices/AfipInvoiceTranslator.php -------------------------------------------------------------------------------- /src/AfipValues/IdCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipValues/IdCodes.php -------------------------------------------------------------------------------- /src/AfipValues/IvaConditionCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipValues/IvaConditionCodes.php -------------------------------------------------------------------------------- /src/AfipValues/ReceiptCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipValues/ReceiptCodes.php -------------------------------------------------------------------------------- /src/AfipValues/UnitSizeCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipValues/UnitSizeCodes.php -------------------------------------------------------------------------------- /src/AfipWebServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/AfipWebServiceInterface.php -------------------------------------------------------------------------------- /src/Auth/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Auth/Authentication.php -------------------------------------------------------------------------------- /src/Exceptions/AfipUnavailableServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Exceptions/AfipUnavailableServiceException.php -------------------------------------------------------------------------------- /src/Exceptions/AfipUnhandledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Exceptions/AfipUnhandledException.php -------------------------------------------------------------------------------- /src/Exceptions/ManejadorResultados.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Exceptions/ManejadorResultados.php -------------------------------------------------------------------------------- /src/Exceptions/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Exceptions/ValidationException.php -------------------------------------------------------------------------------- /src/Exceptions/WsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Exceptions/WsException.php -------------------------------------------------------------------------------- /src/Models/AfipConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/AfipConfig.php -------------------------------------------------------------------------------- /src/Models/AfipWebService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/AfipWebService.php -------------------------------------------------------------------------------- /src/Models/CSRFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/CSRFile.php -------------------------------------------------------------------------------- /src/Models/GeneralHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/GeneralHelper.php -------------------------------------------------------------------------------- /src/Models/InvoiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/InvoiceInterface.php -------------------------------------------------------------------------------- /src/Models/InvoiceWebService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/InvoiceWebService.php -------------------------------------------------------------------------------- /src/Models/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/Log.php -------------------------------------------------------------------------------- /src/Models/Validaciones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Models/Validaciones.php -------------------------------------------------------------------------------- /src/Objects/AssociatedDocumentObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/AssociatedDocumentObject.php -------------------------------------------------------------------------------- /src/Objects/CondicionIvaEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/CondicionIvaEnum.php -------------------------------------------------------------------------------- /src/Objects/CreditOrDebitObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/CreditOrDebitObject.php -------------------------------------------------------------------------------- /src/Objects/FiscalDocumentDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/FiscalDocumentDto.php -------------------------------------------------------------------------------- /src/Objects/InvoiceObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/InvoiceObject.php -------------------------------------------------------------------------------- /src/Objects/InvoiceResultObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/InvoiceResultObject.php -------------------------------------------------------------------------------- /src/Objects/Invoices/ConceptEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/Invoices/ConceptEnum.php -------------------------------------------------------------------------------- /src/Objects/ItemCodigoUnidadMedidaEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/ItemCodigoUnidadMedidaEnum.php -------------------------------------------------------------------------------- /src/Objects/ItemObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/ItemObject.php -------------------------------------------------------------------------------- /src/Objects/SubtotalesIvaObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/SubtotalesIvaObject.php -------------------------------------------------------------------------------- /src/Objects/WebServiceEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/Objects/WebServiceEnum.php -------------------------------------------------------------------------------- /src/WSAA/Wsaa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSAA/Wsaa.php -------------------------------------------------------------------------------- /src/WSAA/wsaa.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSAA/wsaa.wsdl -------------------------------------------------------------------------------- /src/WSFE/Wsfe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSFE/Wsfe.php -------------------------------------------------------------------------------- /src/WSFE/wsfe.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSFE/wsfe.wsdl -------------------------------------------------------------------------------- /src/WSMTXCA/AfipResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSMTXCA/AfipResult.php -------------------------------------------------------------------------------- /src/WSMTXCA/WsParametros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSMTXCA/WsParametros.php -------------------------------------------------------------------------------- /src/WSMTXCA/Wsmtxca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSMTXCA/Wsmtxca.php -------------------------------------------------------------------------------- /src/WSMTXCA/WsmtxcaFuncionesInternas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSMTXCA/WsmtxcaFuncionesInternas.php -------------------------------------------------------------------------------- /src/WSMTXCA/wsmtxca.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSMTXCA/wsmtxca.wsdl -------------------------------------------------------------------------------- /src/WSPN3/Wspn3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSPN3/Wspn3.php -------------------------------------------------------------------------------- /src/WSPN3/wspn3.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/src/WSPN3/wspn3.wsdl -------------------------------------------------------------------------------- /tests/AfipInvoices/AfipInvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/AfipInvoices/AfipInvoiceTest.php -------------------------------------------------------------------------------- /tests/AfipInvoices/AfipInvoiceTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/AfipInvoices/AfipInvoiceTranslatorTest.php -------------------------------------------------------------------------------- /tests/AfipTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/AfipTraitTest.php -------------------------------------------------------------------------------- /tests/InvoiceTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/InvoiceTestTrait.php -------------------------------------------------------------------------------- /tests/ModelTests/CsrFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/ModelTests/CsrFileTest.php -------------------------------------------------------------------------------- /tests/TestAfipCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/TestAfipCase.php -------------------------------------------------------------------------------- /tests/WsfeTests/WsfeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/WsfeTests/WsfeTest.php -------------------------------------------------------------------------------- /tests/WsmtxcaTests/WsmtxcaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/WsmtxcaTests/WsmtxcaTest.php -------------------------------------------------------------------------------- /tests/Wspn3Tests/Wspn3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/Wspn3Tests/Wspn3Test.php -------------------------------------------------------------------------------- /tests/resources/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !certificate-testing.crt 4 | !privateKey -------------------------------------------------------------------------------- /tests/resources/certificate-testing.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/resources/certificate-testing.crt -------------------------------------------------------------------------------- /tests/resources/privateKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multinexo/php-afip-ws/HEAD/tests/resources/privateKey --------------------------------------------------------------------------------