Skip to content

Commit

Permalink
feat(deps): add Sylius 1.14 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
maximehuran committed Jan 21, 2025
1 parent 43b53ea commit 7b55424
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.2']
sylius: ["~1.12.0", "~1.13.0"]
php: ['8.2', '8.3']
sylius: ["~1.12.0", "~1.13.0", "1.14.0"]

steps:
- name: Setup PHP
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.2']
php: ['8.2', '8.3']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.2']
php: ['8.2', '8.3']

env:
SYMFONY_ARGS: --no-tls
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DEFAULT_GOAL := help
SHELL=/bin/bash
APP_DIR=tests/Application
SYLIUS_VERSION=1.13.0
SYLIUS_VERSION=1.14.0
SYMFONY=cd ${APP_DIR} && symfony
COMPOSER=symfony composer
CONSOLE=${SYMFONY} console
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@

## Compatibility

| Sylius Version | PHP Version |
|---|-------------|
| 1.12 | 8.2 |
| 1.13 | 8.2 |
| Sylius Version | PHP Version |
|----------------|-----------------|
| 1.12 | 8.2 - 8.3 |
| 1.13 | 8.2 - 8.3 |
| 1.14 | 8.2 - 8.3 |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"require": {
"monsieurbiz/sylius-rich-editor-plugin": "^2.8",
"php": "^8.2",
"sylius/sylius": ">=1.12 <1.14"
"sylius/sylius": ">=1.12 <2.0"
},
"require-dev": {
"behat/behat": "^3.6.1",
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yaml.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
database:
image: mysql:8.0
Expand All @@ -18,4 +17,4 @@ services:
- 1080

volumes:
database: {}
database: {}

0 comments on commit 7b55424

Please sign in to comment.