插件 sylius
v1.1.2
Lyra Collect for Sylius 是一款开源插件,可将基于 Sylius 的电子商务网站链接到 Lyra Network 开发的 Lyra Collect 安全支付网关。
composer require lyranetwork/sylius-lyranetwork-plugin dev-lyra
[sylius-root]/config/
的bundles.php文件中添加以下行: LyranetworkLyraLyranetworkLyraPlugin::class => ['all' => true],
[sylius-root]/config/
的routes.yaml文件中添加Lyra 路由: sylius_lyra :
resource : " @LyranetworkLyraPlugin/Resources/config/routing.yaml "
[sylius-root]/config/packages
的 _ sylius.yaml文件中添加 Lyra 回调: winzou_state_machine :
sylius_payment :
callbacks :
after :
custom_action :
on : ["process", "authorize", "complete"]
do : ["@lyranetworklyra.order_service", "sendConfirmationEmail"]
args : ["object"]
[sylius-root]/config
的services.yaml文件中添加 Lyra 服务: services:
[...]
lyranetworklyra.order_service:
class: LyranetworkLyraServiceOrderService
public: true
composer dump-autoload
小心
SyliusAdminBundlePaymentMethod_form.html.twig
SyliusAdminBundleOrderShow_payment.html.twig
SyliusShopBundleCheckoutSelectPayment_choice.html.twig
SyliusUiBundleFormtheme.html.twig
cp -R vendor/lyranetwork/sylius-lyranetwork-plugin/LyranetworkLyra/Resources/views/bundles/* templates/bundles/
php bin/console cache:clear
该插件现在应该出现在您可以创建的付款方式列表中。
[sylius-root]/composer.json
中的 autoload psr-4 中添加以下行: "Lyranetwork\Lyra\": "LyranetworkLyra/src/"
[sylius-root]/config/
的bundles.php文件中添加以下行: LyranetworkLyraLyranetworkLyraPlugin::class => ['all' => true],
[sylius-root]/config/
的routes.yaml文件中添加Lyra 路由: sylius_lyra :
resource : " @LyranetworkLyraPlugin/Resources/config/routing.yaml "
[sylius-root]/config/packages
的 _ sylius.yaml文件中添加 Lyra 回调: winzou_state_machine :
sylius_payment :
callbacks :
after :
custom_action :
on : ["process", "authorize", "complete"]
do : ["@lyranetworklyra.order_service", "sendConfirmationEmail"]
args : ["object"]
[sylius-root]/config
的services.yaml文件中添加 Lyra 服务: services:
[...]
lyranetworklyra.order_service:
class: LyranetworkLyraServiceOrderService
public: true
composer dump-autoload
小心
SyliusAdminBundlePaymentMethod_form.html.twig
SyliusAdminBundleOrderShow_payment.html.twig
SyliusShopBundleCheckoutSelectPayment_choice.html.twig
SyliusUiBundleFormtheme.html.twig
cp -R LyranetworkLyra/Resources/views/bundles/* templates/bundles/
php bin/console translation:extract en LyranetworkLyraPlugin --dump-messages
php bin/console translation:extract fr LyranetworkLyraPlugin --dump-messages
php bin/console translation:extract es LyranetworkLyraPlugin --dump-messages
php bin/console translation:extract de LyranetworkLyraPlugin --dump-messages
php bin/console translation:extract pt LyranetworkLyraPlugin --dump-messages
php bin/console translation:extract br LyranetworkLyraPlugin --dump-messages
php bin/console cache:clear
该插件现在应该出现在您可以创建的付款方式列表中。
在Sylius管理界面中:
Configuration > Payment methods
。Create
按钮以显示可用的付款方式列表。Payment by Lyra Collect
进行添加和配置。Create
按钮进行保存。 composer remove lyranetwork/sylius-lyranetwork-plugin
sylius/composer.json
中 autoload psr-4 中的行: "Lyranetwork\Lyra\": "LyranetworkLyra/src/"
[sylius-root]/config/
的bundles.php文件中的以下行: LyranetworkLyraLyranetworkLyraPlugin::class => ['all' => true],
[sylius-root]/config/
的paths.yaml文件中的 Lyra 路由 sylius_lyra :
resource : " @LyranetworkLyraPlugin/Resources/config/routing.yaml "
[sylius-root]/config/packages
中的 _ sylius.yaml文件中的 Lyra 回调: winzou_state_machine :
sylius_payment :
callbacks :
after :
custom_action :
on : ["process", "authorize", "complete"]
do : ["@lyranetworklyra.order_service", "sendConfirmationEmail"]
args : ["object"]
[sylius-root]/config
的services.yaml文件中的 Lyra 服务: services:
[...]
lyranetworklyra.order_service:
class: LyranetworkLyraServiceOrderService
public: true
templates/bundles/
中所有添加的模板文件 SyliusAdminBundlePaymentMethod_form.html.twig
SyliusAdminBundleOrderShow_payment.html.twig
SyliusShopBundleCheckoutSelectPayment_choice.html.twig
SyliusUiBundleFormtheme.html.twig
composer dump-autoload
php bin/console cache:clear
本发行版中包含的每个 Lyra Collect 支付模块源文件均根据 MIT 许可证 (MIT) 获得许可。
请参阅 LICENSE.txt 以获取 MIT 许可证的全文。您还可以通过万维网访问此 URL:https://opensource.org/licenses/mit-license.html。