1 <?php
2
3 namespace PayPal\Core;
4
5 /**
6 * Class PayPalConstants
7 * Placeholder for Paypal Constants
8 *
9 * @package PayPal\Core
10 */
11 class PayPalConstants
12 {
13
14 const SDK_NAME = 'PayPal-PHP-SDK';
15 const SDK_VERSION = '1.12.0';
16
17 /**
18 * Approval URL for Payment
19 */
20 const APPROVAL_URL = 'approval_url';
21
22 const REST_SANDBOX_ENDPOINT = "https://api.sandbox.paypal.com/";
23 const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com";
24
25 const REST_LIVE_ENDPOINT = "https://api.paypal.com/";
26 const OPENID_REDIRECT_LIVE_URL = "https://www.paypal.com";
27 }
28