Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 636 Bytes

01_Installation.md

File metadata and controls

29 lines (21 loc) · 636 Bytes

Installation of the Number Sequence Generator Bundle

Bundle Installation

To install the Number Sequence Generator Bundle, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/number-sequence-generator
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:
use Pimcore\Bundle\NumberSequenceGeneratorBundle;
// ...
return [
    // ...
    NumberSequenceGeneratorBundle::class => ['all' => true],
    // ...
];  
  1. Install the bundle:
bin/console pimcore:bundle:install NumberSequenceGeneratorBundle