From 085755bb97a9427b52a5a126788da9986a42ae39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=CC=81s=CC=8C=20Ludvik?= Date: Wed, 6 Dec 2023 10:20:45 +0100 Subject: [PATCH] removed no longer correct way to register bundles - bundles are now registered automatically during composer require --- README.md | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/README.md b/README.md index 23ad0f3..8924014 100644 --- a/README.md +++ b/README.md @@ -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.