Skip to content

Commit

Permalink
OP-550 - Update README file for installation process
Browse files Browse the repository at this point in the history
  • Loading branch information
JanPalen committed Jan 15, 2025
1 parent e244fdb commit 01b603b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The **SyliusProductBundle** plugin allows you to create bundles from existing pr
imports:
...
- { resource: "@BitBagSyliusProductBundlePlugin/Resources/config/config.yml" }
- { resource: "@BitBagSyliusProductBundlePlugin/config/config.yml" }
```
4. Import routing in your `config/routes.yaml` file:
Expand All @@ -105,7 +105,7 @@ The **SyliusProductBundle** plugin allows you to create bundles from existing pr
...
bitbag_sylius_product_bundle_plugin:
resource: "@BitBagSyliusProductBundlePlugin/Resources/config/routing.yml"
resource: "@BitBagSyliusProductBundlePlugin/config/routes.yml"
```
5. Extend `Product`(including Doctrine mapping):
Expand Down Expand Up @@ -156,7 +156,7 @@ The **SyliusProductBundle** plugin allows you to create bundles from existing pr
Mapping (XML):
```xml
# Resources/config/doctrine/Product.Product.orm.xml
# config/doctrine/Product.Product.orm.xml
<?xml version="1.0" encoding="UTF-8"?>
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
Expand Down Expand Up @@ -228,7 +228,7 @@ The **SyliusProductBundle** plugin allows you to create bundles from existing pr
Mapping (XML):
```xml
# Resources/config/doctrine/Order.OrderItem.orm.xml
# config/doctrine/Order.OrderItem.orm.xml
<?xml version="1.0" encoding="UTF-8"?>
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
Expand Down Expand Up @@ -307,7 +307,7 @@ The **SyliusProductBundle** plugin allows you to create bundles from existing pr
App:
is_bundle: false
type: xml
dir: '%kernel.project_dir%/src/Resources/config/doctrine'
dir: '%kernel.project_dir%/config/doctrine'
prefix: 'App\Entity'
alias: App
Expand Down

0 comments on commit 01b603b

Please sign in to comment.