Skip to content

Commit

Permalink
removed no longer correct way to register bundles
Browse files Browse the repository at this point in the history
- bundles are now registered automatically during composer require
  • Loading branch information
TomasLudvik committed Dec 12, 2023
1 parent 1edf139 commit 085755b
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,6 @@ First, you download the package using [Composer](https://getcomposer.org/):
composer require shopsys/product-feed-persoo
```

### Register

For the bundle to be loaded in your application you need to register it in the `app/AppKernel.php` file of your project:

```php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
// ...
new Shopsys\ProductFeed\PersooBundle\ShopsysProductFeedPersooBundle(),
// ...
];

// ...

return $bundles;
}

// ...
}
```

## How to use

You should see the new feed immediately after installation in the administration feed list.
Expand Down

0 comments on commit 085755b

Please sign in to comment.