<?php
// Set your secret key. Remember to switch to your live secret key in production.
// See your keys here: https://dashboard.stripe.com/apikeys
$stripe = new \Stripe\StripeClient('sk_test_51Lmp8ZLOGF67C0rHGsIFcb7YAbMdqlg9wnGviAmbneUsuQY9hNGwHy0k4niqqOwjinUAO0V4XixNjxX85pgtwPC000KkhmVs5Y');
$stripe->prices->create(
['currency' => 'usd', 'unit_amount' => 1000, 'product' => '{{PRODUCT_ID}}']
);