Skip to content

Commit

Permalink
minor #261 Drop support for Sylius 1.9 & Symfony 5.2 (GSadee)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.0-dev branch.

Discussion
----------



Commits
-------

f856d2f Drop support for Sylius 1.9
148ab47 Drop support for Symfony 5.2
  • Loading branch information
GSadee authored Nov 30, 2021
2 parents cc71aa9 + 148ab47 commit 98337bf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,11 @@ jobs:
fail-fast: false
matrix:
php: ["7.4", "8.0"]
symfony: ["^4.4", "^5.2"]
sylius: ["~1.9.0", "~1.10.0"]
symfony: ["^4.4", "5.3.*"]
sylius: ["~1.10.0"]
node: ["10.x"]
mysql: ["5.7", "8.0"]

exclude:
-
php: "8.0"
sylius: "~1.9.0"

env:
APP_ENV: test
DATABASE_URL: "mysql://root:[email protected]/sylius?serverVersion=${{ matrix.mysql }}"
Expand Down
5 changes: 5 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### UPGRADE FROM 0.18.0 TO 0.19.0

1. Support for Sylius 1.9 has been dropped, upgrade your application to [Sylius 1.10](https://github.com/Sylius/Sylius/blob/master/UPGRADE-1.10.md).
1. Support for Symfony 5.2 has been dropped.

### UPGRADE FROM 0.17.0 TO 0.18.0

1. The `Sylius\InvoicingPlugin\Converter\BillingDataConverter` has been removed in favor of `Sylius\InvoicingPlugin\Factory\BillingDataFactory->createFromAddress`.
Expand Down
32 changes: 16 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"ramsey/uuid": "^3.9",
"sylius/grid-bundle": "^1.7",
"sylius/resource-bundle": "^1.6",
"sylius/sylius": "^1.9",
"symfony/config": "^4.4 || ^5.2",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/form": "^4.4 || ^5.2",
"symfony/framework-bundle": "^4.4 || ^5.2",
"symfony/http-foundation": "^4.4 || ^5.2",
"symfony/http-kernel": "^4.4 || ^5.2",
"symfony/messenger": "^4.4 || ^5.2",
"symfony/options-resolver": "^4.4 || ^5.2",
"symfony/routing": "^4.4 || ^5.2"
"sylius/sylius": "^1.10",
"symfony/config": "^4.4 || ^5.3",
"symfony/dependency-injection": "^4.4 || ^5.3",
"symfony/form": "^4.4 || ^5.3",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/http-foundation": "^4.4 || ^5.3",
"symfony/http-kernel": "^4.4 || ^5.3",
"symfony/messenger": "^4.4 || ^5.3",
"symfony/options-resolver": "^4.4 || ^5.3",
"symfony/routing": "^4.4 || ^5.3"
},
"require-dev": {
"behat/behat": "^3.6.1",
Expand All @@ -43,12 +43,12 @@
"phpstan/phpstan-webmozart-assert": "0.12.12",
"phpunit/phpunit": "^8.5",
"sylius-labs/coding-standard": "~4.0.0",
"symfony/browser-kit": "^4.4 || ^5.2",
"symfony/debug-bundle": "^4.4 || ^5.2",
"symfony/dotenv": "^4.4 || ^5.2",
"symfony/intl": "^4.4 || ^5.2",
"symfony/web-profiler-bundle": "^4.4 || ^5.2",
"symfony/web-server-bundle": "^4.4 || ^5.2"
"symfony/browser-kit": "^4.4 || ^5.3",
"symfony/debug-bundle": "^4.4 || ^5.3",
"symfony/dotenv": "^4.4 || ^5.3",
"symfony/intl": "^4.4 || ^5.3",
"symfony/web-profiler-bundle": "^4.4 || ^5.3",
"symfony/web-server-bundle": "^4.4 || ^5.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 98337bf

Please sign in to comment.