├── .gitignore ├── .phpunit.result.cache ├── .travis.yml ├── README.md ├── SWSDK.php ├── SWServices ├── AcceptReject │ ├── AcceptRejectRequest.php │ └── AcceptRejectService.php ├── AccountBalance │ ├── AccountBalanceRequest.php │ └── AccountBalanceService.php ├── AccountUser │ ├── AccountUserRequest.php │ └── AccountUserService.php ├── Authentication │ ├── AuthRequest.php │ └── AuthenticationService.php ├── Cancelation │ ├── CancelationHandler.php │ ├── CancelationRequest.php │ └── CancelationService.php ├── CancelationRetention │ ├── CancelationRetentionHelper.php │ ├── CancelationRetentionRequest.php │ └── CancelationRetentionService.php ├── Csd │ ├── CsdRequest.php │ └── CsdService.php ├── Helpers │ ├── RequestHelper.php │ └── ResponseHelper.php ├── Issuer │ └── IssuerService.php ├── JSonIssuer │ ├── JsonIssuerHelper.php │ ├── JsonIssuerRequest.php │ ├── JsonIssuerService.php │ └── JsonIssuerV4Service.php ├── PDF │ ├── PDFHelper.php │ ├── PDFRequest.php │ └── PDFService.php ├── Pendings │ ├── PendingsRequest.php │ └── PendingsService.php ├── Relations │ ├── RelationsRequest.php │ └── RelationsService.php ├── Resend │ ├── ResendRequest.php │ └── ResendService.php ├── Retention │ ├── RetencionesHelper.php │ ├── RetencionesRequest.php │ └── RetencionesService.php ├── SatQuery │ ├── SatQueryRequest.php │ └── SatQueryService.php ├── Services.php ├── Stamp │ ├── StampHelper.php │ ├── StampRequest.php │ └── StampService.php ├── Storage │ ├── StorageRequest.php │ ├── StorageResponse.php │ └── StorageService.php ├── Toolkit │ └── SignService.php └── Validation │ ├── ValidateRequest.php │ └── ValidateXMLService.php ├── Samples ├── AccountBalance.php ├── Authentication.php ├── Cancelation.php ├── Sign.php ├── Stamp.php ├── b64Cer.cer ├── b64Key.key ├── basico.xml ├── composer.json ├── composer.lock ├── file.xml └── index.php ├── Test ├── AcceptRejectTests.php ├── AccountBalanceTest.php ├── AccountUserTests.php ├── AuthTests.php ├── CancelationRetentionTests.php ├── CancelationTests.php ├── CsdTest.php ├── IssueTests.php ├── JsonIssueTests.php ├── PDFTest.php ├── PendingsTest.php ├── RelationsTest.php ├── ResendTest.php ├── Resources │ ├── SignResources │ │ ├── cadenaoriginal.txt │ │ ├── resultado.cer.pem │ │ └── resultado.key.pem │ ├── acceptReject_xml.xml │ ├── cadenaOriginal.txt │ ├── cadenaOriginalRetenciones.txt │ ├── cancel_retention_xml.xml │ ├── cancel_xml.xml │ ├── cert_pruebas │ │ ├── EKU9003173C9.cer │ │ ├── EKU9003173C9.key │ │ ├── EKU9003173C9.pfx │ │ ├── EKU9003173C9_Cer.pem │ │ ├── EKU9003173C9_key.pem │ │ └── cadenaoriginal_4_0.xslt │ ├── cfdi40.xml │ ├── cfdi40_json.json │ ├── cfdi40_sellado.xml │ ├── cfdi40_test.xml │ ├── file_pdf.xml │ ├── retencion20.xml │ ├── retencion20_sellado.xml │ ├── retencion20_test.xml │ ├── retencion20_test_error.xml │ ├── xml_b64.txt │ └── xslt │ │ ├── CartaPorte20.xslt │ │ ├── CartaPorte30.xslt │ │ ├── CartaPorte31.xslt │ │ ├── ComercioExterior11.xslt │ │ ├── GastosHidrocarburos10.xslt │ │ ├── IngresosHidrocarburos.xslt │ │ ├── ServiciosPlataformasTecnologicas10.xslt │ │ ├── TuristaPasajeroExtranjero.xslt │ │ ├── aerolineas.xslt │ │ ├── arrendamientoenfideicomiso.xslt │ │ ├── cadenaoriginal_4_0.xslt │ │ ├── cadenaoriginal_TFD_1_1.xslt │ │ ├── certificadodedestruccion.xslt │ │ ├── cfdiregistrofiscal.xslt │ │ ├── consumodeCombustibles11.xslt │ │ ├── detallista.xslt │ │ ├── dividendos.xslt │ │ ├── divisas.xslt │ │ ├── donat11.xslt │ │ ├── ecc12.xslt │ │ ├── enajenaciondeacciones.xslt │ │ ├── fideicomisonoempresarial.xslt │ │ ├── iedu.xslt │ │ ├── implocal.xslt │ │ ├── ine11.xslt │ │ ├── intereses.xslt │ │ ├── intereseshipotecarios.xslt │ │ ├── leyendasFisc.xslt │ │ ├── nomina12.xslt │ │ ├── notariospublicos.xslt │ │ ├── obrasarteantiguedades.xslt │ │ ├── operacionesconderivados.xslt │ │ ├── pagoenespecie.xslt │ │ ├── pagos20.xslt │ │ ├── pagosaextranjeros.xslt │ │ ├── pfic.xslt │ │ ├── planesderetiro11.xslt │ │ ├── premios.xslt │ │ ├── renovacionysustitucionvehiculos.xslt │ │ ├── retencion_2_0.xslt │ │ ├── sectorfinanciero.xslt │ │ ├── servicioparcialconstruccion.xslt │ │ ├── utilerias.xslt │ │ ├── valesdedespensa.xslt │ │ ├── vehiculousado.xslt │ │ └── ventavehiculos11.xslt ├── RetencionesTests.php ├── SatQueryTests.php ├── SignTests.php ├── StampTests.php ├── StorageTest.php └── ValidateXMLTest.php ├── cadena.txt ├── composer.json ├── composer.lock ├── index.php └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/.phpunit.result.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/README.md -------------------------------------------------------------------------------- /SWSDK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWSDK.php -------------------------------------------------------------------------------- /SWServices/AcceptReject/AcceptRejectRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/AcceptReject/AcceptRejectRequest.php -------------------------------------------------------------------------------- /SWServices/AcceptReject/AcceptRejectService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/AcceptReject/AcceptRejectService.php -------------------------------------------------------------------------------- /SWServices/AccountBalance/AccountBalanceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/AccountBalance/AccountBalanceRequest.php -------------------------------------------------------------------------------- /SWServices/AccountBalance/AccountBalanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/AccountBalance/AccountBalanceService.php -------------------------------------------------------------------------------- /SWServices/AccountUser/AccountUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/AccountUser/AccountUserRequest.php -------------------------------------------------------------------------------- /SWServices/AccountUser/AccountUserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/AccountUser/AccountUserService.php -------------------------------------------------------------------------------- /SWServices/Authentication/AuthRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Authentication/AuthRequest.php -------------------------------------------------------------------------------- /SWServices/Authentication/AuthenticationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Authentication/AuthenticationService.php -------------------------------------------------------------------------------- /SWServices/Cancelation/CancelationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Cancelation/CancelationHandler.php -------------------------------------------------------------------------------- /SWServices/Cancelation/CancelationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Cancelation/CancelationRequest.php -------------------------------------------------------------------------------- /SWServices/Cancelation/CancelationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Cancelation/CancelationService.php -------------------------------------------------------------------------------- /SWServices/CancelationRetention/CancelationRetentionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/CancelationRetention/CancelationRetentionHelper.php -------------------------------------------------------------------------------- /SWServices/CancelationRetention/CancelationRetentionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/CancelationRetention/CancelationRetentionRequest.php -------------------------------------------------------------------------------- /SWServices/CancelationRetention/CancelationRetentionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/CancelationRetention/CancelationRetentionService.php -------------------------------------------------------------------------------- /SWServices/Csd/CsdRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Csd/CsdRequest.php -------------------------------------------------------------------------------- /SWServices/Csd/CsdService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Csd/CsdService.php -------------------------------------------------------------------------------- /SWServices/Helpers/RequestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Helpers/RequestHelper.php -------------------------------------------------------------------------------- /SWServices/Helpers/ResponseHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Helpers/ResponseHelper.php -------------------------------------------------------------------------------- /SWServices/Issuer/IssuerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Issuer/IssuerService.php -------------------------------------------------------------------------------- /SWServices/JSonIssuer/JsonIssuerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/JSonIssuer/JsonIssuerHelper.php -------------------------------------------------------------------------------- /SWServices/JSonIssuer/JsonIssuerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/JSonIssuer/JsonIssuerRequest.php -------------------------------------------------------------------------------- /SWServices/JSonIssuer/JsonIssuerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/JSonIssuer/JsonIssuerService.php -------------------------------------------------------------------------------- /SWServices/JSonIssuer/JsonIssuerV4Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/JSonIssuer/JsonIssuerV4Service.php -------------------------------------------------------------------------------- /SWServices/PDF/PDFHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/PDF/PDFHelper.php -------------------------------------------------------------------------------- /SWServices/PDF/PDFRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/PDF/PDFRequest.php -------------------------------------------------------------------------------- /SWServices/PDF/PDFService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/PDF/PDFService.php -------------------------------------------------------------------------------- /SWServices/Pendings/PendingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Pendings/PendingsRequest.php -------------------------------------------------------------------------------- /SWServices/Pendings/PendingsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Pendings/PendingsService.php -------------------------------------------------------------------------------- /SWServices/Relations/RelationsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Relations/RelationsRequest.php -------------------------------------------------------------------------------- /SWServices/Relations/RelationsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Relations/RelationsService.php -------------------------------------------------------------------------------- /SWServices/Resend/ResendRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Resend/ResendRequest.php -------------------------------------------------------------------------------- /SWServices/Resend/ResendService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Resend/ResendService.php -------------------------------------------------------------------------------- /SWServices/Retention/RetencionesHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Retention/RetencionesHelper.php -------------------------------------------------------------------------------- /SWServices/Retention/RetencionesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Retention/RetencionesRequest.php -------------------------------------------------------------------------------- /SWServices/Retention/RetencionesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Retention/RetencionesService.php -------------------------------------------------------------------------------- /SWServices/SatQuery/SatQueryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/SatQuery/SatQueryRequest.php -------------------------------------------------------------------------------- /SWServices/SatQuery/SatQueryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/SatQuery/SatQueryService.php -------------------------------------------------------------------------------- /SWServices/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Services.php -------------------------------------------------------------------------------- /SWServices/Stamp/StampHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Stamp/StampHelper.php -------------------------------------------------------------------------------- /SWServices/Stamp/StampRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Stamp/StampRequest.php -------------------------------------------------------------------------------- /SWServices/Stamp/StampService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Stamp/StampService.php -------------------------------------------------------------------------------- /SWServices/Storage/StorageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Storage/StorageRequest.php -------------------------------------------------------------------------------- /SWServices/Storage/StorageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Storage/StorageResponse.php -------------------------------------------------------------------------------- /SWServices/Storage/StorageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Storage/StorageService.php -------------------------------------------------------------------------------- /SWServices/Toolkit/SignService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Toolkit/SignService.php -------------------------------------------------------------------------------- /SWServices/Validation/ValidateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Validation/ValidateRequest.php -------------------------------------------------------------------------------- /SWServices/Validation/ValidateXMLService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/SWServices/Validation/ValidateXMLService.php -------------------------------------------------------------------------------- /Samples/AccountBalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/AccountBalance.php -------------------------------------------------------------------------------- /Samples/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/Authentication.php -------------------------------------------------------------------------------- /Samples/Cancelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/Cancelation.php -------------------------------------------------------------------------------- /Samples/Sign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/Sign.php -------------------------------------------------------------------------------- /Samples/Stamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/Stamp.php -------------------------------------------------------------------------------- /Samples/b64Cer.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/b64Cer.cer -------------------------------------------------------------------------------- /Samples/b64Key.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/b64Key.key -------------------------------------------------------------------------------- /Samples/basico.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/basico.xml -------------------------------------------------------------------------------- /Samples/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/composer.json -------------------------------------------------------------------------------- /Samples/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/composer.lock -------------------------------------------------------------------------------- /Samples/file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/file.xml -------------------------------------------------------------------------------- /Samples/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Samples/index.php -------------------------------------------------------------------------------- /Test/AcceptRejectTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/AcceptRejectTests.php -------------------------------------------------------------------------------- /Test/AccountBalanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/AccountBalanceTest.php -------------------------------------------------------------------------------- /Test/AccountUserTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/AccountUserTests.php -------------------------------------------------------------------------------- /Test/AuthTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/AuthTests.php -------------------------------------------------------------------------------- /Test/CancelationRetentionTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/CancelationRetentionTests.php -------------------------------------------------------------------------------- /Test/CancelationTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/CancelationTests.php -------------------------------------------------------------------------------- /Test/CsdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/CsdTest.php -------------------------------------------------------------------------------- /Test/IssueTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/IssueTests.php -------------------------------------------------------------------------------- /Test/JsonIssueTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/JsonIssueTests.php -------------------------------------------------------------------------------- /Test/PDFTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/PDFTest.php -------------------------------------------------------------------------------- /Test/PendingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/PendingsTest.php -------------------------------------------------------------------------------- /Test/RelationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/RelationsTest.php -------------------------------------------------------------------------------- /Test/ResendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/ResendTest.php -------------------------------------------------------------------------------- /Test/Resources/SignResources/cadenaoriginal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/SignResources/cadenaoriginal.txt -------------------------------------------------------------------------------- /Test/Resources/SignResources/resultado.cer.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/SignResources/resultado.cer.pem -------------------------------------------------------------------------------- /Test/Resources/SignResources/resultado.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/SignResources/resultado.key.pem -------------------------------------------------------------------------------- /Test/Resources/acceptReject_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/acceptReject_xml.xml -------------------------------------------------------------------------------- /Test/Resources/cadenaOriginal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cadenaOriginal.txt -------------------------------------------------------------------------------- /Test/Resources/cadenaOriginalRetenciones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cadenaOriginalRetenciones.txt -------------------------------------------------------------------------------- /Test/Resources/cancel_retention_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cancel_retention_xml.xml -------------------------------------------------------------------------------- /Test/Resources/cancel_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cancel_xml.xml -------------------------------------------------------------------------------- /Test/Resources/cert_pruebas/EKU9003173C9.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cert_pruebas/EKU9003173C9.cer -------------------------------------------------------------------------------- /Test/Resources/cert_pruebas/EKU9003173C9.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cert_pruebas/EKU9003173C9.key -------------------------------------------------------------------------------- /Test/Resources/cert_pruebas/EKU9003173C9.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cert_pruebas/EKU9003173C9.pfx -------------------------------------------------------------------------------- /Test/Resources/cert_pruebas/EKU9003173C9_Cer.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cert_pruebas/EKU9003173C9_Cer.pem -------------------------------------------------------------------------------- /Test/Resources/cert_pruebas/EKU9003173C9_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cert_pruebas/EKU9003173C9_key.pem -------------------------------------------------------------------------------- /Test/Resources/cert_pruebas/cadenaoriginal_4_0.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cert_pruebas/cadenaoriginal_4_0.xslt -------------------------------------------------------------------------------- /Test/Resources/cfdi40.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cfdi40.xml -------------------------------------------------------------------------------- /Test/Resources/cfdi40_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cfdi40_json.json -------------------------------------------------------------------------------- /Test/Resources/cfdi40_sellado.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cfdi40_sellado.xml -------------------------------------------------------------------------------- /Test/Resources/cfdi40_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/cfdi40_test.xml -------------------------------------------------------------------------------- /Test/Resources/file_pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/file_pdf.xml -------------------------------------------------------------------------------- /Test/Resources/retencion20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/retencion20.xml -------------------------------------------------------------------------------- /Test/Resources/retencion20_sellado.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/retencion20_sellado.xml -------------------------------------------------------------------------------- /Test/Resources/retencion20_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/retencion20_test.xml -------------------------------------------------------------------------------- /Test/Resources/retencion20_test_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/retencion20_test_error.xml -------------------------------------------------------------------------------- /Test/Resources/xml_b64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xml_b64.txt -------------------------------------------------------------------------------- /Test/Resources/xslt/CartaPorte20.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/CartaPorte20.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/CartaPorte30.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/CartaPorte30.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/CartaPorte31.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/CartaPorte31.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/ComercioExterior11.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/ComercioExterior11.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/GastosHidrocarburos10.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/GastosHidrocarburos10.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/IngresosHidrocarburos.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/IngresosHidrocarburos.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/ServiciosPlataformasTecnologicas10.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/ServiciosPlataformasTecnologicas10.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/TuristaPasajeroExtranjero.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/TuristaPasajeroExtranjero.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/aerolineas.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/aerolineas.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/arrendamientoenfideicomiso.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/arrendamientoenfideicomiso.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/cadenaoriginal_4_0.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/cadenaoriginal_4_0.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/cadenaoriginal_TFD_1_1.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/cadenaoriginal_TFD_1_1.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/certificadodedestruccion.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/certificadodedestruccion.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/cfdiregistrofiscal.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/cfdiregistrofiscal.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/consumodeCombustibles11.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/consumodeCombustibles11.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/detallista.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/detallista.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/dividendos.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/dividendos.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/divisas.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/divisas.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/donat11.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/donat11.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/ecc12.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/ecc12.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/enajenaciondeacciones.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/enajenaciondeacciones.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/fideicomisonoempresarial.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/fideicomisonoempresarial.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/iedu.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/iedu.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/implocal.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/implocal.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/ine11.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/ine11.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/intereses.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/intereses.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/intereseshipotecarios.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/intereseshipotecarios.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/leyendasFisc.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/leyendasFisc.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/nomina12.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/nomina12.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/notariospublicos.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/notariospublicos.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/obrasarteantiguedades.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/obrasarteantiguedades.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/operacionesconderivados.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/operacionesconderivados.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/pagoenespecie.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/pagoenespecie.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/pagos20.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/pagos20.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/pagosaextranjeros.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/pagosaextranjeros.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/pfic.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/pfic.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/planesderetiro11.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/planesderetiro11.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/premios.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/premios.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/renovacionysustitucionvehiculos.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/renovacionysustitucionvehiculos.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/retencion_2_0.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/retencion_2_0.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/sectorfinanciero.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/sectorfinanciero.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/servicioparcialconstruccion.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/servicioparcialconstruccion.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/utilerias.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/utilerias.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/valesdedespensa.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/valesdedespensa.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/vehiculousado.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/vehiculousado.xslt -------------------------------------------------------------------------------- /Test/Resources/xslt/ventavehiculos11.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/Resources/xslt/ventavehiculos11.xslt -------------------------------------------------------------------------------- /Test/RetencionesTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/RetencionesTests.php -------------------------------------------------------------------------------- /Test/SatQueryTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/SatQueryTests.php -------------------------------------------------------------------------------- /Test/SignTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/SignTests.php -------------------------------------------------------------------------------- /Test/StampTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/StampTests.php -------------------------------------------------------------------------------- /Test/StorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/StorageTest.php -------------------------------------------------------------------------------- /Test/ValidateXMLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/Test/ValidateXMLTest.php -------------------------------------------------------------------------------- /cadena.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/cadena.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasoft/sw-sdk-php/HEAD/phpunit.xml --------------------------------------------------------------------------------