├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── examples ├── Billcode.php ├── BillcodeDetails.php ├── Ideal.php ├── IdealBanks.php ├── Paycode.php ├── PaycodeDetails.php ├── Refund.php ├── Sofortueberweisung.php └── TransactionData.php ├── phpunit.xml.dist ├── src ├── Sofort │ └── SofortLib │ │ ├── AbstractDataHandler.php │ │ ├── AbstractHttp.php │ │ ├── AbstractLoggerHandler.php │ │ ├── AbstractWrapper.php │ │ ├── Billcode.php │ │ ├── BillcodeDetails.php │ │ ├── Factory.php │ │ ├── FileLogger.php │ │ ├── HttpCurl.php │ │ ├── HttpSocket.php │ │ ├── Ideal.php │ │ ├── IdealBanks.php │ │ ├── IdealNotification.php │ │ ├── Multipay.php │ │ ├── Notification.php │ │ ├── Paycode.php │ │ ├── PaycodeAbstract.php │ │ ├── PaycodeDetails.php │ │ ├── PaycodeDetailsAbstract.php │ │ ├── Refund.php │ │ ├── Sofortueberweisung.php │ │ ├── TransactionData.php │ │ ├── Xml │ │ ├── ArrayToXml.php │ │ ├── ArrayToXmlException.php │ │ ├── Element │ │ │ ├── Element.php │ │ │ ├── Tag.php │ │ │ └── Text.php │ │ ├── XmlToArray.php │ │ ├── XmlToArrayException.php │ │ └── XmlToArrayNode.php │ │ └── XmlDataHandler.php └── logs │ └── .gitignore └── tests ├── bootstrap.php └── unit ├── AbstractClassTest.php ├── AbstractDataHandlerTest.php ├── AbstractHttpTest.php ├── AbstractWrapperTest.php ├── BillcodeDetailsTest.php ├── BillcodeTest.php ├── FileLoggerTest.php ├── HttpCurlTest.php ├── HttpSocketTest.php ├── IdealBanksTest.php ├── IdealNotificationTest.php ├── IdealTest.php ├── MultipayTest.php ├── NotificationTest.php ├── PaycodeAbstractTest.php ├── PaycodeDetailsAbstractTest.php ├── PaycodeDetailsTest.php ├── PaycodeTest.php ├── RefundTest.php ├── SofortLibTest.xml ├── SofortObject.php ├── SofortUeberweisungTest.php ├── TestWrapper.php ├── TransactionDataTest.php └── Xml ├── ArrayToXmlTest.php ├── XmlToArrayNodeTest.php └── XmlToArrayTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/Billcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/Billcode.php -------------------------------------------------------------------------------- /examples/BillcodeDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/BillcodeDetails.php -------------------------------------------------------------------------------- /examples/Ideal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/Ideal.php -------------------------------------------------------------------------------- /examples/IdealBanks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/IdealBanks.php -------------------------------------------------------------------------------- /examples/Paycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/Paycode.php -------------------------------------------------------------------------------- /examples/PaycodeDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/PaycodeDetails.php -------------------------------------------------------------------------------- /examples/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/Refund.php -------------------------------------------------------------------------------- /examples/Sofortueberweisung.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/Sofortueberweisung.php -------------------------------------------------------------------------------- /examples/TransactionData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/examples/TransactionData.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Sofort/SofortLib/AbstractDataHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/AbstractDataHandler.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/AbstractHttp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/AbstractHttp.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/AbstractLoggerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/AbstractLoggerHandler.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/AbstractWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/AbstractWrapper.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Billcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Billcode.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/BillcodeDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/BillcodeDetails.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Factory.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/FileLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/FileLogger.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/HttpCurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/HttpCurl.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/HttpSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/HttpSocket.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Ideal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Ideal.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/IdealBanks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/IdealBanks.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/IdealNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/IdealNotification.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Multipay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Multipay.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Notification.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Paycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Paycode.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/PaycodeAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/PaycodeAbstract.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/PaycodeDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/PaycodeDetails.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/PaycodeDetailsAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/PaycodeDetailsAbstract.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Refund.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Sofortueberweisung.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Sofortueberweisung.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/TransactionData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/TransactionData.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/ArrayToXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/ArrayToXml.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/ArrayToXmlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/ArrayToXmlException.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/Element/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/Element/Element.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/Element/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/Element/Tag.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/Element/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/Element/Text.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/XmlToArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/XmlToArray.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/XmlToArrayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/XmlToArrayException.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/Xml/XmlToArrayNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/Xml/XmlToArrayNode.php -------------------------------------------------------------------------------- /src/Sofort/SofortLib/XmlDataHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofort/sofortlib-php/HEAD/src/Sofort/SofortLib/XmlDataHandler.php -------------------------------------------------------------------------------- /src/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |