Skip to content

Instantly share code, notes, and snippets.

View Behram-Khattak's full-sized avatar
🙂

Behram Khattak Behram-Khattak

🙂
View GitHub Profile
@Behram-Khattak
Behram-Khattak / MerchantCategoryCodes.php
Created July 31, 2022 06:27
Stirpe MCC "Merchant Category Codes" Php Associative Array.
// The MCC Merchant Category Codes defines the business your working with.
// These are necessary while creating Stripe Customer.
// Actually MCC become necessary when we use Stripe Connect to make Payments and Transfers.
$mcc = [
'Ac Refrigeration Repair' => '7623',
'Accounting Bookkeeping Services' => '8931',
'Advertising Services' => '7311',
'Agricultural Cooperative' => '0763',
'Airlines Air Carriers' => '4511',
@Behram-Khattak
Behram-Khattak / IsoCurrencyCodes.php
Last active August 2, 2022 11:30
List of ISO Currency Codes Php Array
// These currency codes are allowed by stripe to make payments.
// While creating payments with Stripe Charge or PaymentIntent.
// Currency codes are necessary to add while doing payment with Stripe.
$IsoCurrencyCodes = [
"aed",
"afn",
"all",
"amd",
"ang",
@Behram-Khattak
Behram-Khattak / Stripe-Alpha2CountryCodes.php
Last active August 2, 2022 11:26
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",