setono / sylius-addwish-plugin
Sylius plugin that integrates Addwish
Installs: 19 485
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:sylius-plugin
Requires
- php: >=7.4
- setono/tag-bag: ^2.0
- setono/tag-bag-bundle: ^3.0
- symfony/config: ^4.4 || ^5.4
- symfony/http-kernel: ^4.4 || ^5.4
Requires (Dev)
- phpspec/phpspec: ^6.3
- roave/security-advisories: dev-latest
- setono/code-quality-pack: ^2.2
- setono/sylius-tag-bag-plugin: ^1.1
- sylius/sylius: ~1.10.11
- symfony/browser-kit: ^4.4 || ^5.4
- symfony/debug-bundle: ^4.4 || ^5.4
- symfony/dotenv: ^4.4 || ^5.4
- symfony/intl: ^4.4 || ^5.4
- symfony/web-profiler-bundle: ^4.4 || ^5.4
- symfony/web-server-bundle: ^4.4 || ^5.4
Suggests
- setono/sylius-tag-bag-plugin: Use it if you don't want to override shop's layout.html.twig
- dev-master
- v1.8.0
- v1.7.0
- v1.6.0
- v1.5.0
- v1.4.0
- v1.3.1
- v1.3.0
- v1.2.0
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.0
- dev-dependabot/composer/symfony/browser-kit-tw-5.3.4
- dev-dependabot/composer/phpspec/phpspec-tw-7.1.0
- dev-dependabot/composer/symfony/dotenv-tw-5.3
- dev-dependabot/composer/symfony/debug-bundle-tw-5.1.11
- dev-dependabot/composer/symfony/web-profiler-bundle-tw-5.0.11
- dev-dependabot/composer/sensiolabs/security-checker-tw-6.0
This package is auto-updated.
Last update: 2024-11-10 15:13:29 UTC
README
Plugin integrates Addwish tracking to Sylius
via setono/sylius-tag-bag-plugin
Installation
Step 1: Download the plugin
Open a command console, enter your project directory and execute the following command to download the latest stable version of this plugin:
# Omit setono/sylius-tag-bag-plugin if you want to # override layout.html.twig as described at https://github.com/Setono/TagBagBundle#usage $ composer require setono/sylius-addwish-plugin setono/sylius-tag-bag-plugin
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the plugin
Then, enable the plugin by adding it to the list of registered plugins/bundles
in the config/bundles.php
file of your project:
<?php # config/bundles.php return [ Setono\TagBagBundle\SetonoTagBagBundle::class => ['all' => true], // Use this bundle or override layout.html.twig as described at https://github.com/Setono/TagBagBundle#usage Setono\SyliusTagBagPlugin\SetonoSyliusTagBagPlugin::class => ['all' => true], Setono\SyliusAddwishPlugin\SetonoSyliusAddwishPlugin::class => ['all' => true], ];
Step 3: Create configuration
# config/packages/setono_sylius_addwish.yaml setono_sylius_addwish: partner_id: "%env(ADDWISH_PARTNER_ID)%"
# .env
# Get it at https://addwish.com/company/signin.html
ADDWISH_PARTNER_ID=YOUR_PARTNER_ID
Development
Run composer try
to try this plugin.
Run composer all
before pushing changes to repo / making PR.