1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00

Merge pull request #469 from armino-dev/add-paypal-sandbox-provider

Extending Paypal OAuth2 provider to Paypal Sandbox
This commit is contained in:
Eldad A. Fux 2020-07-06 22:36:52 +03:00 committed by GitHub
commit c70bdafe28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 1 deletions

View file

@ -113,6 +113,14 @@ return [ // Ordered by ABC.
'beta' => false,
'mock' => false
],
'paypalSandbox' => [
'developers' => 'https://developer.paypal.com/docs/api/overview/',
'icon' => 'icon-paypal-sandbox',
'enabled' => true,
'form' => false,
'beta' => false,
'mock' => false
],
'salesforce' => [
'developers' => 'https://developer.salesforce.com/docs/',
'icon' => 'icon-salesforce',

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

View file

@ -22,7 +22,7 @@ class Paypal extends OAuth2
'live' => 'https://api.paypal.com/v1/',
];
private $environment = 'live';
protected $environment = 'live';
/**
* @var array

View file

@ -0,0 +1,19 @@
<?php
namespace Appwrite\Auth\OAuth2;
use Appwrite\Auth\OAuth2\Paypal;
class PaypalSandbox extends Paypal
{
protected environment = 'sandbox';
/**
* @return string
*/
public function getName(): string
{
return 'paypalSandbox';
}
}