条纹上无法识别的选项

Unrecognized options on stripes

我正在尝试为我的网络应用程序安装和配置 Stripe。 我必须使用 Sylius 0.18.0。 我用这个教程安装了 Stripe:http://sylius-older.readthedocs.io/en/latest/cookbook/stripe.html(我也试过 4.8 版)

但是我有一个问题:

Fatal error: Uncaught exception 'Symfony\Component\Config\Definition\Exception\InvalidConfigurationException' with message 'Unrecognized options "factory, secret_key, publishable_key, payum.template.layout, payum.template.obtain_token" under "payum.gateways.stripe_checkout"' in /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php:317 Stack trace: #0 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/BaseNode.php(264): Symfony\Component\Config\Definition\ArrayNode->normalizeValue(Array) #1 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php(283): Symfony\Component\Config\Definition\BaseNode->normalize(Array) #2 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/BaseNode.php(264): Symfony\Component\Config\Definition\PrototypedArrayNode->normalizeValue(Array) #3 /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php(307): Symfony\Component\Config\Defini in /var/www/html/vendor/symfony/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php on line 317

Config.yml :

payum:
    gateways:
        stripe_checkout:
            factory: stripe_checkout
            secret_key: "%stripe.secret_key%"
            publishable_key: "%stripe.publishable_key%"
            payum.template.layout: SyliusShopBundle::Checkout/layout.html.twig
            payum.template.obtain_token: SyliusPayumBundle::Action/Stripe/obtainCheckoutToken.html.twig

我在尝试配置 paypal 时遇到了同样的问题。

我尝试了很多 "solutions" 但问题仍然存在... 感谢您的光临。

我找到了解决方案:

payum:
gateways:
    paypal:
        paypal_express_checkout_nvp:
            username:  %paypal.express_checkout.username%
            password:  %paypal.express_checkout.password%
            signature: %paypal.express_checkout.signature%
            sandbox: true

    stripe:
        stripe_checkout:
            publishable_key: %stripe.publishable_key%
            secret_key: %stripe.secret_key%
    omnipay:
        omnipay:
            type: Stripe
            options:
                apiKey:  %stripe.secret_key%
                testMode: true

但是选择支付方式的下拉列表中没有 Stripe 选项