Skip to content

Commit

Permalink
[Maintenance] Drop support for Sylius 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lchrusciel committed Jun 29, 2021
1 parent 64356b9 commit 784f0b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,15 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 7.3]
php: [7.4, 8.0]
node: [10.x]
mysql: [5.7, 8.0]
symfony: [^4.4, ^5.2, ^5.3]
sylius: [~1.8.0, ~1.9.0]

symfony: [^4.4, ~5.2.0, ~5.3.0]
sylius: [~1.9.0, ~1.10.0]
exclude:
- # PHP 7.3 does not support "caching_sha2_password" authentication plugin which is a default one in MySQL 8.0
php: 7.3
mysql: 8.0
-
sylius: ~1.8.0
symfony: ^5.2
- # Sylius 1.9 does not support PHP 8.0
sylius: ~1.9.0
php: 8.0

env:
APP_ENV: test
Expand Down Expand Up @@ -117,7 +113,3 @@ jobs:
-
name: Run PHPUnit
run: vendor/bin/phpunit --colors=always

-
name: Run Doc Parser
run: vendor/bin/doc-parser doc/Cookbook.md
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "Shop API for Sylius E-Commerce.",
"license": "MIT",
"require": {
"php": "^7.3",
"sylius/sylius": "^1.8",
"php": "^7.4|^8.0",
"sylius/sylius": "^1.9",
"lexik/jwt-authentication-bundle": "^2.5",
"symfony/messenger": "^4.4|^5.2",
"doctrine/doctrine-bundle": "^2.0",
Expand All @@ -23,8 +23,7 @@
"symfony/debug-bundle": "^4.4|^5.2",
"symfony/dotenv": "^4.4|^5.2",
"symfony/web-profiler-bundle": "^4.4|^5.2",
"symfony/web-server-bundle": "^4.4",
"mamazu/documentation-validator": "^1.0.1"
"symfony/web-server-bundle": "^4.4"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 784f0b7

Please sign in to comment.