12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- namespace Braintree\Test;
- /**
- * Credit card information used for testing purposes
- *
- * The constants contained in the Test\CreditCardNumbers class provide
- * credit card numbers that should be used when working in the sandbox environment.
- * The sandbox will not accept any credit card numbers other than the ones listed below.
- *
- * @package Braintree
- * @subpackage Test
- */
- class CreditCardNumbers
- {
- public static $amExes = [
- '378282246310005',
- '371449635398431',
- '378734493671000',
- ];
- public static $carteBlanches = ['30569309025904',];
- public static $dinersClubs = ['38520000023237',];
- public static $discoverCards = [
- '6011111111111117',
- '6011000990139424',
- ];
- public static $JCBs = [
- '3530111333300000',
- '3566002020360505',
- ];
- public static $masterCard = '5555555555554444';
- public static $masterCardInternational = '5105105105105100';
- public static $masterCards = [
- '5105105105105100',
- '5555555555554444',
- ];
- public static $visa = '4012888888881881';
- public static $visaInternational = '4009348888881881';
- public static $visas = [
- '4009348888881881',
- '4012888888881881',
- '4111111111111111',
- '4000111111111115',
- ];
- public static $unknowns = [
- '1000000000000008',
- ];
- public static $failsSandboxVerification = [
- 'AmEx' => '378734493671000',
- 'Discover' => '6011000990139424',
- 'MasterCard' => '5105105105105100',
- 'Visa' => '4000111111111115',
- ];
- public static $amexPayWithPoints = [
- 'Success' => "371260714673002",
- 'IneligibleCard' => "378267515471109",
- 'InsufficientPoints' => "371544868764018",
- ];
- public static $disputes = [
- 'Chargeback' => '4023898493988028',
- ];
- public static function getAll()
- {
- return array_merge(
- self::$amExes,
- self::$discoverCards,
- self::$masterCards,
- self::$visas
- );
- }
- }
- class_alias('Braintree\Test\CreditCardNumbers', 'Braintree_Test_CreditCardNumbers');
|