sepalevy / service-payments-api
1.1
2020-04-02 21:32 UTC
Requires (Dev)
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-03-27 02:12:32 UTC
README
Exemple
use Sepalevy\ServicePaymentsApi\ServiceAPI; $service_adapter = new \Your\Custom\Service\StripeExampleService([ 'secret' => 'xxxx', 'public' => 'xxxx', ]); // All methods available on 'ServiceAPI' class $service = new ServiceAPI($service_adapter); // Example: $service->checkAuthentification(); // true or false $service->getKeys(); // [ 'secret' => 'xxxx', 'public' => 'xxxx' ]