Download the PHP package wemakecustom/stripe-bundle without Composer
On this page you can find all versions of the php package wemakecustom/stripe-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download wemakecustom/stripe-bundle
More information about wemakecustom/stripe-bundle
Files in wemakecustom/stripe-bundle
Package stripe-bundle
Short Description Symfony 2 StripeBundle, a wrapper for Stripe Api
License MIT
Homepage http://www.wemakecustom.com
Informations about the package stripe-bundle
StripeBundle
Provides a simple Symfony 2 Bundle to Wrap the Stripe PHP SDK - https://github.com/stripe/stripe-php
Installation
composer.json
app/AppKernel.php
Configuration
Edit your symfony config.yml file and add, at a minimum, the following lines:
wmc_stripe:
api_secret_key: stripe_secret_key
api_publishable_key: stripe_publishable_key
Utilisation
Authentification
In Stripe you have two form of authentication. The one by your server and the one by your client.
To authenticate your server with the stripe secret key
To authenticate your client with the stripe publishable key
Include all js at once in twig
If you want to do it manually you have a twig extension to get the stripe_publishable_key
Example
If you want to do a basic card submission https://stripe.com/docs/tutorials/forms https://stripe.com/docs/tutorials/charges#saving-credit-card-details-for-later
Basic saving of clients (card details), controller and a view :
Charge a client
TODO:
- Declare Form type and Handler as services