This plugin allows you to integrate PayPlug payment with Sylius platform app including payment features and refunding orders.
In the channel settings, the base currency must be set to EUR because the payment gateway only works in this currency.
In local environment, the plugin will not work properly because you will not be notified of the status of payments from the payment gateway.
⚠️ To generate "Credit memos" when refunding, your server need to have the WKHTMLTOPDF binary⚠️ More info in refund-plugin documentation.
-
If you don't use symfony/messenger component yet, it is required to configure one of the message buses as a default bus in file
config/packages/framework.yaml:framework: messenger: default_bus: sylius_refund_plugin.command_bus
-
As this plugin has a dependency to sylius/refund-plugin which does not yet have a stable release, configure your project to accept release candidate version.
composer config minimum-stability rc composer config prefer-stable true -
Require the payplug/sylius-payplug-plugin :
composer config extra.symfony.allow-contrib true composer require payplug/sylius-payplug-plugin -
Import custom form row theme in your
config/packages/twig.yamlfile:twig: ... form_themes: [ 'form/form_gateway_config_row.html.twig' ]
-
Copy custom form row theme template
mkdir -p templates/form/ cp -R vendor/payplug/sylius-payplug-plugin/src/Resources/views/form/* templates/form/ -
Copy migrations and templates
cp -R vendor/sylius/refund-plugin/migrations/* src/Migrations cp -R vendor/payplug/sylius-payplug-plugin/src/Migrations/* src/Migrations bin/console doctrine:migrations:migrate mkdir -p templates/bundles/SyliusAdminBundle/ cp -R vendor/payplug/sylius-payplug-plugin/src/Resources/views/SyliusAdminBundle/* templates/bundles/SyliusAdminBundle/
-
Add PayPlug to refundable payment method for Sylius Refund Plugin in
config/services.yamlparameters: sylius_refund.supported_gateways: - payplug
-
Process translations
php bin/console translation:update en PayPlugSyliusPayPlugPlugin --dump-messages php bin/console translation:update fr PayPlugSyliusPayPlugPlugin --dump-messages
-
Clear cache:
php bin/console cache:clear
🎉 You are now ready to add Payplug Payment method.
In your back-office, go to Configuration > Payment methods, then click on Create and choose "PayPlug".
If you want to follow the logs in the production environment, you need to add the configuration in config/packages/prod/monolog.yaml, logs should be in var/log/prod.log which can be searched after the phrase [Payum] or [PayPlug]:
monolog:
handlers:
...
payum:
level: debug
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"Run the below command to see what Symfony services are shared with this plugin:
$ bin/console debug:container payplug_sylius_payplug_plugin$ composer install
$ cd tests/Application
$ yarn install
$ yarn build
$ bin/console assets:install public -e test
$ bin/console doctrine:database:create -e test
$ bin/console doctrine:schema:create -e test
$ bin/console server:run 127.0.0.1:8080 -d public -e test
$ open http://localhost:8080
$ bin/behat
$ bin/phpspec runThis library is under the MIT license.