Skip to content

Instantly share code, notes, and snippets.

@Behram-Khattak
Last active August 2, 2022 11:26
Show Gist options
  • Save Behram-Khattak/107da37575a2f28f6a64ba62591467d4 to your computer and use it in GitHub Desktop.
Save Behram-Khattak/107da37575a2f28f6a64ba62591467d4 to your computer and use it in GitHub Desktop.
Stripe Alpha 2 Country Codes Array
// These country codes are allowed by stripe to make payments.
// While creating payments with Stripe Charge or PaymentIntent.
// Country code is necessary to add while doing payment with Stripe.
$CountryCodes = [
"AT",
"AU",
"BE",
"CA",
"CH",
"DE",
"DK",
"EE",
"ES",
"FI",
"FR",
"GB",
"GR",
"HK",
"IE",
"IT",
"JP",
"LT",
"LU",
"LV",
"MX",
"NL",
"NO",
"NZ",
"PL",
"PT",
"SE",
"SG",
"US"
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment