Skip to content

Commit

Permalink
Merge branch '1.0' into 2.0
Browse files Browse the repository at this point in the history
* 1.0:
  Generate changelog for v1.0.0-RC.1
  Generate missing changelog for v0.25.1
  Fix legacy installation
  • Loading branch information
GSadee committed Dec 3, 2024
2 parents 7523b06 + db55f4c commit 0799df4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/legacy_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
```bash
composer require sylius/invoicing-plugin
```
1. Add plugin class to your `AppKernel`:

1. Add plugin class and other required bundles to your `config/bundles.php`:

```php
$bundles = [
new \Knp\Bundle\SnappyBundle\KnpSnappyBundle(),
new \Sylius\InvoicingPlugin\SyliusInvoicingPlugin(),
Knp\Bundle\SnappyBundle\KnpSnappyBundle::class => ['all' => true],
Sylius\InvoicingPlugin\SyliusInvoicingPlugin::class => ['all' => true],
];
```

Expand Down

0 comments on commit 0799df4

Please sign in to comment.