create customer by stripe in php
$customer = StripeCustomer::create(array(
'email' => $email, //[email protected]
'source' => $tokenData,
'name' => $firstName, //Deepak
'address' => [
'line1' => '510 Townsend St',
'postal_code' => '98140',
'city' => 'San Francisco',
'state' => 'CA',
'country' => 'US',
],
));