workouse / sylius-digital-wallet-plugin
Digital Wallet Bundle for Sylius E-Commerce
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 5
Forks: 5
Open Issues: 0
Type:sylius-plugin
Requires
- php: ^7.2
- sylius/sylius: ^1.4
Requires (Dev)
- behat/behat: ^3.4
- behat/mink: ^1.7@dev
- behat/mink-browserkit-driver: ^1.3
- behat/mink-extension: ^2.2
- behat/mink-selenium2-driver: ^1.3
- friends-of-behat/page-object-extension: ^0.3
- friends-of-behat/suite-settings-extension: ^1.0
- friends-of-behat/symfony-extension: ^2.0
- friends-of-behat/variadic-extension: ^1.1
- lakion/mink-debug-extension: ^1.2.3
- phpspec/phpspec: ^5.0
- phpstan/phpstan-doctrine: ^0.10
- phpstan/phpstan-shim: ^0.10
- phpstan/phpstan-webmozart-assert: ^0.10
- phpunit/phpunit: ^6.5
- sensiolabs/security-checker: ^5.0
- sylius-labs/coding-standard: ^2.0
- symfony/browser-kit: ^3.4|^4.1
- symfony/debug-bundle: ^3.4|^4.1
- symfony/dotenv: ^4.2
- symfony/intl: ^3.4|^4.1
- symfony/web-profiler-bundle: ^3.4|^4.1
- symfony/web-server-bundle: ^3.4|^4.1
Conflicts
- symfony/browser-kit: 4.1.8
- symfony/dependency-injection: 4.1.8
- symfony/dom-crawler: 4.1.8
- symfony/routing: 4.1.8
- symfony/symfony: 4.1.8
This package is auto-updated.
Last update: 2024-07-22 20:59:51 UTC
README
Workouse Digital Wallet Plugin
Digital wallet plugin for for Sylius E-Commerce. Adds a credit system feature to customers.
Installation
$ composer require workouse/sylius-digital-wallet-plugin
Add plugin dependencies to your config/bundles.php
file:
return [ ... Workouse\SyliusDigitalWalletPlugin\WorkouseSyliusDigitalWalletPlugin::class => ['all' => true], ];
Import required config in your config/packages/_sylius.yaml
file:
# config/packages/_sylius.yaml imports: ... - { resource: "@WorkouseSyliusDigitalWalletPlugin/Resources/config/config.yml" }
Import routing in your config/routes.yaml
file:
# config/routes.yaml ... workouse_digital_wallet_plugin: resource: "@WorkouseSyliusDigitalWalletPlugin/Resources/config/routing.yml"
Configuration in your config/routes.yaml
file:
#config/packages/workouse_digital_wallet.yml workouse_digital_wallet: referrer: action: 'reference' amount: 500 #must be calculated as amount * 100 for fits sylius money format. currency_code: 'USD' invitee: action: 'reference' amount: 100 currency_code: 'USD'
if want to associate with referral-marketing-sylius, you need to apply the setting below
#config/packages/workouse_referral_marketing.ym workouse_referral_marketing: service: 'workouse_digital_wallet.promotion' ...
Finish the installation by updating the database schema and installing assets:
$ bin/console doctrine:migrations:diff
$ bin/console doctrine:migrations:migrate
$ bin/console cache:clear
Testing & running the plugin
$ composer install $ cd tests/Application $ yarn $ 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 $ vendor/bin/behat