Skip to content

disvroian/SyliusToolsPlugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Sylius Plugin Tools

Provide some useful command for daily use.

Quickstart Installation

  1. Run composer require eknow/sylius-tools-plugin.

  2. From Sylius root directory, run the following commands:

    $ vi config/bundles.php
  3. Add the following inside the Array:

    $ Eknow\SyliusToolsPlugin\EknowSyliusToolsPlugin::class => ['all' => true],
  4. Run the following command to validate it works

    $ php bin/console list

Result will be an list of command such as

```bash
$ sylius:admin:create                     Create an admin user for the backend
$ sylius:admin:delete                     Delete the admin user on backend with his ID
$ sylius:cart:abandonned                  Clean all abandonned carts.
```