8000 updated ecopayz endpoints by junosg · Pull Request #5 · dercoder/omnipay-ecopayz · GitHub
[go: up one dir, main page]

Skip to content

updated ecopayz endpoints #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updated ecopayz endpoints
  • Loading branch information
juno-sg committed Jun 18, 2024
commit d274e466b46a2e4760653eecd51f74b160381bac
4 changes: 2 additions & 2 deletions src/Omnipay/Ecopayz/Message/AbstractRequest.php
Original file line number Diff line number Diff line change Expand Up @@ -16,14 +16,14 @@ abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest * * @var string URL */ protected $testEndpoint = 'https://secure.test.ecopayz.com/services/MerchantAPI/MerchantAPIService.asmx'; protected $testEndpoint = 'https://merchantapi.test.payz.com/MerchantAPIService.asmx';
/** * Live Endpoint URL * * @var string URL */ protected $liveEndpoint = 'https://secure.ecopayz.com/services/MerchantAPI/MerchantAPIService.asmx'; protected $liveEndpoint = 'https://merchantapi.payz.com/MerchantAPIService.asmx';
/** * Get the Merchant ID Expand Down
0