magentix / pickup-plugin
This package is abandoned and no longer maintained.
The author suggests using the magentix/sylius-pickup-plugin package instead.
Pickup Shipping plugin for Sylius.
Package info
github.com/magentix/SyliusPickupPlugin
Type:sylius-plugin
pkg:composer/magentix/pickup-plugin
1.3.0
2018-11-13 15:22 UTC
Requires
- php: ^7.2
- sylius/sylius: ~1.3
Requires (Dev)
- phpspec/phpspec: ^4.0
- phpunit/phpunit: ^6.5
- sylius-labs/coding-standard: ^2.0
README
- This Plugin is a generic plugin allows to add pickup delivery
- See Pickup Demo Plugin for an example of implementation
Installation
$ composer require magentix/sylius-pickup-plugin
Add the plugin to the config/bundles.php file:
Magentix\SyliusPickupPlugin\MagentixSyliusPickupPlugin::class => ['all' => true],
Add the plugin's config to by creating the file config/packages/magentix_sylius_pickup_plugin.yaml with the following content:
imports: - { resource: "@MagentixSyliusPickupPlugin/Resources/config/config.yml" }
Add the plugin's routing by creating the file config/routes/magentix_sylius_pickup_plugin.yaml with the following content:
magentix_sylius_pickup_plugin: resource: "@MagentixSyliusPickupPlugin/Resources/config/routing.yml"
Finish the installation by updating the database schema and installing assets:
bin/console doctrine:migrations:diff bin/console doctrine:migrations:migrate bin/console assets:install bin/console sylius:theme:assets:install