mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
Add Fpt/Stripe-Bundle (#1406)
This commit is contained in:
7
fpt/stripe-bundle/0.5/config/packages/stripe.yaml
Normal file
7
fpt/stripe-bundle/0.5/config/packages/stripe.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
fpt_stripe:
|
||||
credentials:
|
||||
publishable_key: "%env(STRIPE_PUBLISHABLE_KEY)%"
|
||||
secret_key: "%env(STRIPE_SECRET_KEY)%"
|
||||
webhook:
|
||||
check_signature: true
|
||||
signature_key: "%env(STRIPE_WEBHOOK_SIGNATURE_KEY)%"
|
||||
2
fpt/stripe-bundle/0.5/config/routes/stripe.yaml
Normal file
2
fpt/stripe-bundle/0.5/config/routes/stripe.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
stripe_webhooks:
|
||||
resource: "@FptStripeBundle/Resources/config/routes.php"
|
||||
14
fpt/stripe-bundle/0.5/manifest.json
Normal file
14
fpt/stripe-bundle/0.5/manifest.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"bundles": {
|
||||
"Fpt\\StripeBundle\\FptStripeBundle": ["all"]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"STRIPE_PUBLISHABLE_KEY": "pk_***",
|
||||
"STRIPE_SECRET_KEY": "sk_***",
|
||||
"STRIPE_WEBHOOK_SIGNATURE_KEY": "wh_***"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user