dr3ads / paydock_php_sdk
The PayDock PHP SDK provides a PHP friendly wrapper around the PayDock API.
1.2.4
2021-07-12 15:56 UTC
Requires
- php: ^5.6 || ^7.0
Requires (Dev)
- phpunit/phpunit: ^6.2
README
This SDK provides a wrapper around the PayDock REST API.
For more info on the Paydock API, see our full documentation.
Getting the SDK
The SDK is available through composer, or pull it down from github directly.
Simple example to create a single charge
Config::initialise("sandbox", "secret_key", "public_key"); $svc = new Charges(); $response = $svc->create(100, "AUD") ->withCreditCard("58377235377aea03343240cc", "4111111111111111", "2020", "10", "Test Name", "123") ->call();