quartet / stripe-bundle
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
Requires
- php: ~5.6|~7.0
- stripe/stripe-php: ^4.3.0
- symfony/dependency-injection: ^2.6.5|~3.0
- symfony/framework-bundle: ^2.7.6|~3.0
Requires (Dev)
- phpunit/phpunit: ^5.5.7
- symfony/finder: ^2.7.6|~3.0
- symfony/monolog-bundle: ^2.11.2
- symfony/translation: ^2.7.6|~3.0
This package is not auto-updated.
Last update: 2023-02-04 18:11:41 UTC
README
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)