zfr/zfr-stripe-module

Zend Framework 2 module for using ZfrStripe

Maintainers

👁 bakura10

Package info

github.com/zf-fr/zfr-stripe-module

pkg:composer/zfr/zfr-stripe-module

Statistics

Installs: 67 809

Dependents: 2

Suggesters: 0

Stars: 5

Open Issues: 3

v5.0.0 2018-01-04 10:00 UTC

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 540583b3da9f9bc0741933e7dad5e1ed57d213f7

zf2paymentstripe

This package is auto-updated.

Last update: 2026-06-29 01:14:22 UTC


README

ZfrStripeModule is a Zend Framework 2 module that integrates with ZfrStripe.

Versions

For zend-servicemanager 2 use version 4.0

For zend-servicemanager 3 and above use version 5.0

Installation

To install ZfrStripeModule, use composer:

$ composer require zfr/zfr-stripe-module ^5.0

Enable ZfrStripeModule in your application.config.php, then copy the file vendor/zfr/zfr-stripe-module/config/zfr_stripe.local.php.dist to the config/autoload directory of your application (don't forget to remove the .dist extension from the file name!).

zf-component-installer

If you use zf-component-installer, that plugin will install ZfrStripeModule as a module for you.

Usage

This module registers the ZfrStripe client in your application's service manager. You can get it by requesting the service ZfrStripe\Client\StripeClient:

$stripeClient = $serviceManager->get('ZfrStripe\Client\ZfrStripeClient');

For more information on the usage of ZfrStripe, please refer to its documentation.