├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── coverage.clover ├── ocular.phar ├── phpunit.xml.dist ├── src └── Gordalina │ └── Easypay │ ├── Client.php │ ├── Config.php │ ├── Payment │ ├── CustomerInfo.php │ ├── Payment.php │ ├── PaymentComplete.php │ ├── PaymentNotification.php │ ├── PaymentResult.php │ └── RecurringPayment.php │ ├── Request │ ├── CreatePayment.php │ ├── CreateRecurringPayment.php │ ├── FetchAllPayments.php │ ├── PaymentDetail.php │ ├── RequestInterface.php │ └── RequestPayment.php │ └── Response │ ├── AbstractResponse.php │ ├── CreatePayment.php │ ├── CreateRecurringPayment.php │ ├── FetchAllPayments.php │ ├── PaymentDetail.php │ ├── RequestPayment.php │ └── ResponseInterface.php └── tests ├── Gordalina └── Easypay │ └── Tests │ ├── ClientTest.php │ ├── ConfigTest.php │ ├── Integration │ ├── CreatePaymentTest.php │ ├── CreateRecurringPaymentTest.php │ └── IntegrationTestCase.php │ ├── Payment │ ├── CustomerInfoTest.php │ ├── PaymentNotificationTest.php │ ├── PaymentResultTest.php │ ├── PaymentTest.php │ └── RecurringPaymentTest.php │ ├── Request │ ├── CreatePaymentTest.php │ ├── CreateRecurringPaymentTest.php │ ├── FetchAllPaymentsTest.php │ ├── PaymentDetailTest.php │ └── RequestPaymentTest.php │ ├── Response │ ├── CreatePaymentTest.php │ ├── PaymentDetailTest.php │ └── RequestPaymentTest.php │ └── Stub │ ├── ClientStub.php │ ├── RequestStub.php │ └── ResponseStub.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | phpunit.xml 3 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/composer.lock -------------------------------------------------------------------------------- /coverage.clover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/coverage.clover -------------------------------------------------------------------------------- /ocular.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/ocular.phar -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Client.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Config.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Payment/CustomerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Payment/CustomerInfo.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Payment/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Payment/Payment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Payment/PaymentComplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Payment/PaymentComplete.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Payment/PaymentNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Payment/PaymentNotification.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Payment/PaymentResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Payment/PaymentResult.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Payment/RecurringPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Payment/RecurringPayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Request/CreatePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Request/CreatePayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Request/CreateRecurringPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Request/CreateRecurringPayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Request/FetchAllPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Request/FetchAllPayments.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Request/PaymentDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Request/PaymentDetail.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Request/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Request/RequestInterface.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Request/RequestPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Request/RequestPayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/AbstractResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/AbstractResponse.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/CreatePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/CreatePayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/CreateRecurringPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/CreateRecurringPayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/FetchAllPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/FetchAllPayments.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/PaymentDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/PaymentDetail.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/RequestPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/RequestPayment.php -------------------------------------------------------------------------------- /src/Gordalina/Easypay/Response/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/src/Gordalina/Easypay/Response/ResponseInterface.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/ClientTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Integration/CreatePaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Integration/CreatePaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Integration/CreateRecurringPaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Integration/CreateRecurringPaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Integration/IntegrationTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Integration/IntegrationTestCase.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Payment/CustomerInfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Payment/CustomerInfoTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Payment/PaymentNotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Payment/PaymentNotificationTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Payment/PaymentResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Payment/PaymentResultTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Payment/PaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Payment/PaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Payment/RecurringPaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Payment/RecurringPaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Request/CreatePaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Request/CreatePaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Request/CreateRecurringPaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Request/CreateRecurringPaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Request/FetchAllPaymentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Request/FetchAllPaymentsTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Request/PaymentDetailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Request/PaymentDetailTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Request/RequestPaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Request/RequestPaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Response/CreatePaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Response/CreatePaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Response/PaymentDetailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Response/PaymentDetailTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Response/RequestPaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Response/RequestPaymentTest.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Stub/ClientStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Stub/ClientStub.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Stub/RequestStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Stub/RequestStub.php -------------------------------------------------------------------------------- /tests/Gordalina/Easypay/Tests/Stub/ResponseStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/Gordalina/Easypay/Tests/Stub/ResponseStub.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordalina/easypay-php/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------