-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature #386 Add Symfony 6 support (coldic3, GSadee)
This PR was merged into the 1.3 branch. Discussion ---------- | Q | A | --------------- | ----- | Branch? | 1.3 | Bug fix? | no | New feature? | no | Related tickets | To be merged on Sylius 1.12 release 💃 In addition, #385 should be merged before this one then the rebase will be needed. Commits ------- 124da5b [GitHub Actions] Add Sylius 1.12 to the matrix 69d029f [Maintenance] Add support for Symfony 6 abf9148 [Maintenance] Fix Kernel.php and app configs 5483b16 [Maintenance] Adjust services to Sylius 6 006c863 [Maintenance] Fix deprecated services definitions 726ccf1 [Maintenance] Upgrade PHPStan packages 6ca616b [GitHub Actions] Bump node version e79164a Add missing deprecation fb14324 [GitHub Actions] Add more elements to the matrix
- Loading branch information
Showing
28 changed files
with
209 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,20 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
php: ["8.0", "8.1"] | ||
symfony: ["^5.4"] | ||
sylius: ["~1.11.2", "~1.12.0"] | ||
node: ["14.x"] | ||
symfony: ["^5.4", "^6.0"] | ||
sylius: ["~1.11.4", "~1.12.0"] | ||
node: ["16.x"] | ||
mysql: ["5.7", "8.0"] | ||
pdf: [true] | ||
|
||
include: | ||
- | ||
php: "8.1" | ||
symfony: "^6.0" | ||
sylius: "~1.12.0" | ||
node: "16.x" | ||
mysql: "8.0" | ||
pdf: false | ||
- | ||
php: "8.1" | ||
symfony: "^5.4" | ||
|
@@ -35,6 +42,10 @@ jobs: | |
mysql: "8.0" | ||
pdf: false | ||
|
||
exclude: | ||
- symfony: "^6.0" | ||
sylius: "~1.11.4" | ||
|
||
env: | ||
APP_ENV: test | ||
DATABASE_URL: "mysql://root:[email protected]/sylius?serverVersion=${{ matrix.mysql }}" | ||
|
@@ -183,7 +194,7 @@ jobs: | |
|
||
- | ||
name: Run PHPStan | ||
run: vendor/bin/phpstan analyse -c phpstan.neon -l max src/ | ||
run: vendor/bin/phpstan analyse -c phpstan.neon src/ | ||
|
||
- | ||
name: Run PHPSpec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.