Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c01449c

Browse files
Drop support for Sylius 1.12 and PHP 8.0
1 parent 85ddeeb commit c01449c

4 files changed

Lines changed: 7 additions & 27 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,15 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
php: ["8.0", "8.1", "8.2", "8.3"]
22+
php: ["8.1", "8.2", "8.3"]
2323
symfony: ["^5.4", "^6.4"]
24-
sylius: ["~1.12.0", "~1.13.0", "~1.14.0"]
24+
sylius: ["~1.13.0", "~1.14.0"]
2525
node: ["20.x"]
2626
mysql: ["8.0"]
2727

2828
exclude:
29-
- sylius: "~1.13.0"
30-
php: 8.0
31-
- sylius: "~1.14.0"
32-
php: 8.0
3329
- sylius: "~1.14.0"
3430
symfony: ^5.4
35-
- sylius: "~1.12.0"
36-
php: 8.0
37-
symfony: ^6.4
3831

3932
env:
4033
APP_ENV: test

.github/workflows/coding_standard.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,14 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
php: ["8.0", "8.1", "8.2", "8.3"]
21+
php: ["8.1", "8.2", "8.3"]
2222
symfony: ["^5.4", "^6.4"]
23-
sylius: ["~1.12.0", "~1.13.0", "~1.14.0"]
23+
sylius: ["~1.13.0", "~1.14.0"]
2424
node: ["20.x"]
2525

2626
exclude:
27-
- sylius: "~1.13.0"
28-
php: 8.0
29-
- sylius: "~1.14.0"
30-
php: 8.0
3127
- sylius: "~1.14.0"
3228
symfony: ^5.4
33-
- sylius: "~1.12.0"
34-
php: 8.0
35-
symfony: ^6.4
3629

3730
steps:
3831
- uses: actions/checkout@v3

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"description": "CMS plugin for Sylius applications.",
1010
"license": "MIT",
1111
"require": {
12-
"php": "^8.0",
13-
"sylius/sylius": "^1.12",
12+
"php": "^8.1",
13+
"sylius/sylius": "^1.13",
1414
"league/csv": "^9.1",
1515
"friendsofsymfony/ckeditor-bundle": "^2.0",
1616
"instaclick/php-webdriver": "^1.4",

tests/Application/config/bundles.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
$bundles = [
5+
return [
66
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
77
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
88
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
@@ -63,9 +63,3 @@
6363
FOS\CKEditorBundle\FOSCKEditorBundle::class => ['all' => true],
6464
BitBag\SyliusCmsPlugin\BitBagSyliusCmsPlugin::class => ['all' => true],
6565
];
66-
67-
if (class_exists(FOS\CKEditorBundle\FOSCKEditorBundle::class)) {
68-
$bundles[FOS\CKEditorBundle\FOSCKEditorBundle::class] = ['all' => true];
69-
}
70-
71-
return $bundles;

0 commit comments

Comments
 (0)