├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── composer.json ├── docs ├── docblox.dist.xml └── gocardless-template │ ├── content.xsl │ └── template.xml ├── examples ├── merchant.php ├── partner.php └── webhooks.php ├── lib ├── GoCardless.php └── GoCardless │ ├── Bill.php │ ├── Client.php │ ├── Exceptions.php │ ├── Merchant.php │ ├── Payout.php │ ├── PreAuthorization.php │ ├── Request.php │ ├── Resource.php │ ├── Subscription.php │ ├── User.php │ ├── Utils.php │ └── cert-bundle.crt ├── phpunit.xml └── tests ├── GoCardlessTest.php ├── bootstrap.php └── lib ├── BillTest.php ├── ClientTest.php ├── MerchantTest.php ├── PayoutTest.php ├── PreAuthorizationTest.php ├── RequestTest.php ├── SubscriptionTest.php ├── UserTest.php └── UtilsTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/composer.json -------------------------------------------------------------------------------- /docs/docblox.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/docs/docblox.dist.xml -------------------------------------------------------------------------------- /docs/gocardless-template/content.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/docs/gocardless-template/content.xsl -------------------------------------------------------------------------------- /docs/gocardless-template/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/docs/gocardless-template/template.xml -------------------------------------------------------------------------------- /examples/merchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/examples/merchant.php -------------------------------------------------------------------------------- /examples/partner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/examples/partner.php -------------------------------------------------------------------------------- /examples/webhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/examples/webhooks.php -------------------------------------------------------------------------------- /lib/GoCardless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless.php -------------------------------------------------------------------------------- /lib/GoCardless/Bill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Bill.php -------------------------------------------------------------------------------- /lib/GoCardless/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Client.php -------------------------------------------------------------------------------- /lib/GoCardless/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Exceptions.php -------------------------------------------------------------------------------- /lib/GoCardless/Merchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Merchant.php -------------------------------------------------------------------------------- /lib/GoCardless/Payout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Payout.php -------------------------------------------------------------------------------- /lib/GoCardless/PreAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/PreAuthorization.php -------------------------------------------------------------------------------- /lib/GoCardless/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Request.php -------------------------------------------------------------------------------- /lib/GoCardless/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Resource.php -------------------------------------------------------------------------------- /lib/GoCardless/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Subscription.php -------------------------------------------------------------------------------- /lib/GoCardless/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/User.php -------------------------------------------------------------------------------- /lib/GoCardless/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/Utils.php -------------------------------------------------------------------------------- /lib/GoCardless/cert-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/lib/GoCardless/cert-bundle.crt -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/GoCardlessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/GoCardlessTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/lib/BillTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/BillTest.php -------------------------------------------------------------------------------- /tests/lib/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/ClientTest.php -------------------------------------------------------------------------------- /tests/lib/MerchantTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/MerchantTest.php -------------------------------------------------------------------------------- /tests/lib/PayoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/PayoutTest.php -------------------------------------------------------------------------------- /tests/lib/PreAuthorizationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/PreAuthorizationTest.php -------------------------------------------------------------------------------- /tests/lib/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/RequestTest.php -------------------------------------------------------------------------------- /tests/lib/SubscriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/SubscriptionTest.php -------------------------------------------------------------------------------- /tests/lib/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/UserTest.php -------------------------------------------------------------------------------- /tests/lib/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/gocardless-legacy-php/HEAD/tests/lib/UtilsTest.php --------------------------------------------------------------------------------