2017 © Pedro Peláez
 

symfony-bundle payment-stripe-bundle

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle.

image

ruudk/payment-stripe-bundle

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle.

  • Saturday, April 22, 2017
  • by ruudk
  • Repository
  • 3 Watchers
  • 6 Stars
  • 7,496 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 2 Open issues
  • 4 Versions
  • 5 % Grown

The README.md

NO LONGER MAINTAINED

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle., (*1)

Installation

Step1: Require the package with Composer

php composer.phar require symfony/event-dispatcher:^2.8
php composer.phar require ruudk/payment-stripe-bundle

Step2: Enable the bundle

Enable the bundle in the kernel:, (*2)

``` php <?php // app/AppKernel.php, (*3)

public function registerBundles() { $bundles = array( // ..., (*4)

    new Ruudk\Payment\StripeBundle\RuudkPaymentStripeBundle(),
);

}, (*5)


### Step3: Configure Add the following to your config.yml: ```yaml ruudk_payment_stripe: api_key: Your API key logger: true/false # Default true methods: - checkout

Make sure you set the description in the predefined_data for every payment method you enable:, (*6)

$form = $this->getFormFactory()->create('jms_choose_payment_method', null, array(
    'amount'   => $order->getAmount(),
    'currency' => 'EUR',
    'predefined_data' => array(
        'stripe_checkout' => array(
            'description' => 'My product',
        ),
    ),
));

See JMSPaymentCoreBundle documentation for more info., (*7)

The Versions

22/04 2017

dev-master

9999999-dev https://github.com/ruudk/PaymentStripeBundle

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle.

  Sources   Download

MIT

The Requires

 

by Ruud Kamphuis

payment stripe

19/07 2016

2.0.0

2.0.0.0 https://github.com/ruudk/PaymentStripeBundle

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle.

  Sources   Download

MIT

The Requires

 

by Ruud Kamphuis

payment stripe

25/10 2015

1.1.0

1.1.0.0 https://github.com/ruudk/PaymentStripeBundle

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle.

  Sources   Download

Apache2

The Requires

 

by Ruud Kamphuis

payment stripe

14/05 2014

1.0.0

1.0.0.0 https://github.com/ruudk/PaymentStripeBundle

A Symfony2 Bundle that provides access to the Stripe API. Based on JMSPaymentCoreBundle.

  Sources   Download

Apache2

The Requires

 

by Ruud Kamphuis

payment stripe