quartet/stripe-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Integration of stripe into symfony2.

Installs: 18 962

Dependents: 1

Suggesters: 1

Security: 0

Stars: 1

Watchers: 9

Forks: 0

Open Issues: 1

Type:symfony-bundle

v0.4.1 2016-12-20 01:36 UTC

This package is not auto-updated.

Last update: 2023-02-04 18:11:41 UTC


README

Build Status

Installation

Download QuartetStripeBundle using composer

 $ composer require quartet/stripe-bundle

Enable the bundle

Enable the bundle in the kernel

<?php
// app/Appkernel.php

 public function registerBundles()
 {
    $bundles = [
        new Quartet\StripeBundle\QuartetStripeBundle(),
    ];
 }

Configure your stripe application keys

# app/config/config.yml

quartet_stripe:
    api_secret: your stripe api secret
    api_public: your stripe api public
    logger: logger_service_id # [optional] to enable http client logging feature
    debug: true or false      # [optional] to enable http client debugging feature (Useful for functional test)