· 6 years ago · Mar 12, 2019, 06:58 PM
1<?php
2require_once('vendor/autoload.php');
3
4$stripe = [
5 "secret_key" => "sk_test_usWnHNWFD2YsmdXCOytdWjqg",
6 "publishable_key" => "pk_test_qF5AKfvdHpPJ7JNLZbeJv3Tq",
7];
8
9\Stripe\Stripe::setApiKey($stripe['secret_key']);
10?>