Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 527 Bytes

01_Installation.md

File metadata and controls

27 lines (19 loc) · 527 Bytes

Installation

:::info

This bundle is only supported on Pimcore 11.

:::

To install Static Resolver Bundle, follow the two steps below:

  1. Install the required dependencies:
composer require pimcore/static-resolver-bundle
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:
use Pimcore\Bundle\StaticResolverBundle\PimcoreStaticResolverBundle;
// ...

return [
    // ...
    PimcoreStaticResolverBundle::class => ['all' => true],
    // ...
];