Skip to content

Commit

Permalink
Fix Sylius 1.12 composer requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mpysiak committed Oct 26, 2023
1 parent 10d3651 commit b129fc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ If you are curious about the details of this plugin, read [this blog post](https
## Installation

```bash
$ composer require bitbag/shipping-export-plugin
composer require bitbag/shipping-export-plugin
```

Add plugin dependencies to your `config/bundles.php` file:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^8.0",
"doctrine/dbal": "^2.7",
"doctrine/dbal": "^2.7 || ^3.0",
"sylius/sylius": "~1.11.0 || ~1.12.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/doctrine/ShippingGateway.orm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<field name="code" column="code" type="string" nullable="false"/>

<field name="config" column="config" type="json_array" nullable="false"/>
<field name="config" column="config" type="array" nullable="false"/>

<field name="name" column="name" type="string" nullable="false"/>

Expand Down

0 comments on commit b129fc8

Please sign in to comment.